[issue2636] Adding a new regex module (compatible with re)

2017-07-25 Thread Jonathan Halcrow
Changes by Jonathan Halcrow <jonathan.halc...@gmail.com>: -- nosy: -jhalcrow ___ Python tracker <rep...@bugs.python.org> <http://bugs.pytho

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2011-05-10 Thread Jonathan Halcrow
Jonathan Halcrow jonathan.halc...@gmail.com added the comment: I'm having a problem using the current version (0.1.20110504) with python 2.5 on OSX 10.5. When I try to import regex I get the following import error: dlopen(snipped/python2.5/site-packages/_regex.so, 2): Symbol not found

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2011-05-10 Thread Jonathan Halcrow
Jonathan Halcrow jonathan.halc...@gmail.com added the comment: It seems that _regex_unicode.c is missing from setup.py, adding it to ext_modules fixes my previous issue. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636

[issue10254] unicodedata.normalize('NFC', s) regression

2010-12-15 Thread Jonathan Halcrow
Jonathan Halcrow jonathan.halc...@gmail.com added the comment: I think I've come across a related problem. I am experiencing a segfault when NFC-normalizing a certain string [1]. The crash occurs with 2.7.1 in OS X (built from source with homebrew). Here is the backtrace: #0 0x0025a96e

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2010-07-13 Thread Jonathan Halcrow
Jonathan Halcrow jonathan.halc...@gmail.com added the comment: The most recent version on pypi (20100709) seems to be missing _regex_core from py_modules in setup.py. Currently import regex fails, unable to locate _regex_core. -- nosy: +jhalcrow