Fix last traces of old threading API.

This commit is contained in:
Georg Brandl 2008-06-13 06:32:25 +00:00
parent 7634ff5ad6
commit f992640ed3
7 changed files with 25 additions and 25 deletions

View file

@ -243,7 +243,7 @@ class SettableQueue(Queue.Queue):
try:
self.queue.clear()
self.queue.extend(contents)
self.not_empty.notifyAll()
self.not_empty.notify_all()
finally:
self.not_empty.release()