I have a project which runs is run in pypy (and already achieves a nice speedup over its python counterpart). However, I do have a Cython implementation of one function which is way faster than the pypy version. So I would like to include this function.
The problem is that pypy does not seem to find this module (even though the .so lies in the same folder as the executed .py script):
ImportError: No module named foo
Hence, does pypy support cython? Thanks.