hashdist / hashstack

Collection of software profiles for HashDist
https://hashdist.github.io/
51 stars 60 forks source link

Build Python 2.7 with UCS-4 enabled #985

Closed vbraun closed 7 years ago

vbraun commented 7 years ago

Without it, Python cannot handle regular expressions involving 4-byte unicode chars. This is also the default in Python >= 3.3

I just tripped over this:

In [1]: import re
In [2]: re.compile(u'[\U00010000-\U0010ffff]')
error: bad character range

Whereas it works with the system python2 and python3 on Fedora, probably all other distros too.

vbraun commented 7 years ago

I think its pretty uncontroversial, merging...