Message7527

Author zzzeek
Recipients amak, fwierzbicki, ikotler, zzzeek
Date 2012-11-19.16:27:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353342460.88.0.930130702512.issue1963@psf.upfronthosting.co.za>
In-reply-to
Content
the actual issue here is that notify_all() is not implemented.   Both methods are present in Python's API:

http://docs.python.org/2/library/threading.html#threading.Condition.notify_all


notify_all()
notifyAll()

    Wake up all threads waiting on this condition. This method acts like notify(), but wakes up all waiting threads instead of one. If the calling thread has not acquired the lock when this method is called, a RuntimeError is raised.
History
Date User Action Args
2012-11-19 16:27:40zzzeeksetmessageid: <1353342460.88.0.930130702512.issue1963@psf.upfronthosting.co.za>
2012-11-19 16:27:40zzzeeksetrecipients: + zzzeek, fwierzbicki, amak, ikotler
2012-11-19 16:27:40zzzeeklinkissue1963 messages
2012-11-19 16:27:40zzzeekcreate