Issue1989

classification
Title: condition.notify_all() is missing
Type: Severity: normal
Components: Library Versions: 2.7a2
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: fwierzbicki Nosy List: fwierzbicki, zzzeek
Priority: normal Keywords:

Created on 2012-11-19.16:30:32 by zzzeek, last changed 2013-02-04.21:55:21 by fwierzbicki.

Messages
msg7528 (view) Author: mike bayer (zzzeek) Date: 2012-11-19.16:30:32
Jython's threading.Condition features notifyAll(), but notify_all() is also required.  Most Python programs will call the latter version because it is pep8 compliant:

http://docs.python.org/2/library/threading.html#threading.Condition.notify_all
msg7616 (view) Author: Frank Wierzbicki (fwierzbicki) Date: 2013-02-04.21:55:21
Fixed in http://hg.python.org/jython/rev/5fee31b7624f
History
Date User Action Args
2013-02-04 21:55:21fwierzbickisetstatus: open -> closed
priority: normal
resolution: fixed
messages: + msg7616
assignee: fwierzbicki
2012-11-19 16:38:14fwierzbickisetnosy: + fwierzbicki
2012-11-19 16:30:32zzzeekcreate