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 mark.dickinson
Recipients mark.dickinson, neologix, pitrou, sbt
Date 2013-03-10.11:14:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362914071.75.0.257248382005.issue17389@psf.upfronthosting.co.za>
In-reply-to
Content
I think there's a race condition in the patched version:  'self._flag' could be set in between if 'if not signaled:' and the 'self._cond.acquire()', and in that case you'll end up waiting for an event that's already occurred.  Do you need to recheck 'self._flag' after acquiring the condition?
History
Date User Action Args
2013-03-10 11:14:31mark.dickinsonsetrecipients: + mark.dickinson, pitrou, neologix, sbt
2013-03-10 11:14:31mark.dickinsonsetmessageid: <1362914071.75.0.257248382005.issue17389@psf.upfronthosting.co.za>
2013-03-10 11:14:31mark.dickinsonlinkissue17389 messages
2013-03-10 11:14:31mark.dickinsoncreate