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 pitrou
Recipients pitrou
Date 2009-10-23.18:20:44
SpamBayes Score 3.8418047e-11
Marked as misclassified No
Message-id <1256322047.39.0.394218490419.issue7194@psf.upfronthosting.co.za>
In-reply-to
Content
test_thread sometimes tries to release an unacquired mutex. It is easier
to reproduce when using the "-j" option (on trunk and py3k, since the
option doesn't exist on 2.6/3.1):

./python -m test.regrtest -j4 test_thread test_thread test_thread
test_thread
test_thread
test_thread
test_thread
Unhandled exception in thread started by <bound method
ThreadRunningTests.task of <test.test_thread.ThreadRunningTests
testMethod=test_stack_size>>
Traceback (most recent call last):
  File "/home/antoine/py3k/__svn__/Lib/test/test_thread.py", line 49, in
task
    self.done_mutex.release()
_thread.error: release unlocked lock
test_thread
History
Date User Action Args
2009-10-23 18:20:47pitrousetrecipients: + pitrou
2009-10-23 18:20:47pitrousetmessageid: <1256322047.39.0.394218490419.issue7194@psf.upfronthosting.co.za>
2009-10-23 18:20:45pitroulinkissue7194 messages
2009-10-23 18:20:44pitroucreate