commit | f992640ed39d2865920237a3454bdffb117fe6bc | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Fri Jun 13 06:32:25 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Fri Jun 13 06:32:25 2008 +0000 |
tree | 2687db169d72a803ee9ef2411ee085532dcbe02a | |
parent | 7634ff5ad6d141cab8d33fcff788b65e064a8104 [diff] |
Fix last traces of old threading API.
diff --git a/Doc/includes/mp_distributing.py b/Doc/includes/mp_distributing.py index 24ae8f8..5cd12bb 100644 --- a/Doc/includes/mp_distributing.py +++ b/Doc/includes/mp_distributing.py
@@ -243,7 +243,7 @@ try: self.queue.clear() self.queue.extend(contents) - self.not_empty.notifyAll() + self.not_empty.notify_all() finally: self.not_empty.release()