This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author scoder
Recipients amaury.forgeotdarc, ossman, python-dev, scoder
Date 2012-04-22.12:56:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335099410.4.0.200561605363.issue14474@psf.upfronthosting.co.za>
In-reply-to
Content
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.)
History
Date User Action Args
2012-04-22 12:56:50scodersetrecipients: + scoder, amaury.forgeotdarc, python-dev, ossman
2012-04-22 12:56:50scodersetmessageid: <1335099410.4.0.200561605363.issue14474@psf.upfronthosting.co.za>
2012-04-22 12:56:49scoderlinkissue14474 messages
2012-04-22 12:56:49scodercreate