2012/8/30 Jan Riechers <janpet...@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 _______________________________________________ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev