Stefan Behnel <sco...@users.sourceforge.net> added the comment:

Could the

    while thread._count() > c:
        pass

in test_thread.py be changed to this? (as used in other places)

    while thread._count() > c:
        time.sleep(0.01)

It currently hangs in Cython because it doesn't free the GIL during the plain C 
loop. (While that might be considered a bug in Cython, it's not what this test 
is supposed to test for.)

----------
nosy: +scoder

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14474>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to