is there any way to use this regex module with pypy?
https://pypi.python.org/pypi/regex
or any alternative regex module that works with pypy and has the features of this regex module. I did copy regex module files from my python installation into pypys lib_pypy folder, but i cannot import this module, the error is:
ImportError: No module named _regex
it seems that it cannot import _regex.pyd file. I'm using pypy3-2.1-beta1-win32, windows xp.
I also tried building the library with pypy:
pypy setup.py build -c mingw32
and i've got this error:
error: package directory 'Python3' does not exist
I tried removing package_dir={'': PKG_BASE} from setup.py and retry the build, and then there was another error:
File "...\pypy3-2.1-beta1-win32\lib-python\3\distutils\cygwinccompiler.py", line 352, in check_config_h
fn = sysconfig.get_config_h_filename()
AttributeError: 'module' object has no attribute 'get_config_h_filename'