[pypy-dev] pymongo compatibility broken with version 2.3

Amaury Forgeot d'Arc amauryfa at gmail.com
Thu Aug 30 14:25:49 CEST 2012


2012/8/30 Jan Riechers <janpeterr at freenet.de>:
> (env) D:\gg_webdev>pypy dbskin.py
> Fatal Python error: PyThreadState_Get: no current thread

This error message does not appear anywhere in pypy code,
it certainly comes from CPython...

This message is typical of an extension module that was not recompiled for pypy;
it still links with python27.dll, and the call to PyThreadState_Get() jumps into
an uninitialized CPython interpreter...

Extension modules need to be recompiled for pypy.

-- 
Amaury Forgeot d'Arc


More information about the pypy-dev mailing list