Armin Rigo <[email protected]> added the comment:

Argh!  Found out the reason for why it crashes.  It's only because the GIL was
not initialized.  In the example I tried, adding the following line at the top
of the script helps a lot:

    import thread; thread.start_new_thread(lambda: None, ())

________________________________________
PyPy bug tracker <[email protected]>
<https://bugs.pypy.org/issue1465>
________________________________________
_______________________________________________
pypy-issue mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to