diff options
author | Georg Brandl <georg@python.org> | 2009-06-08 18:41:36 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-08 18:41:36 (GMT) |
commit | 0c6d16647984c6e274662bb64ee99bf2c1c2a86c (patch) | |
tree | 11f8986d0dc8f46cfeeb287319416f4b6ce94627 /Lib/multiprocessing/queues.py | |
parent | 2cc39ad242588c2f64c0457b9d243c9cb8462f51 (diff) | |
download | cpython-0c6d16647984c6e274662bb64ee99bf2c1c2a86c.zip cpython-0c6d16647984c6e274662bb64ee99bf2c1c2a86c.tar.gz cpython-0c6d16647984c6e274662bb64ee99bf2c1c2a86c.tar.bz2 |
Typo fix.
Diffstat (limited to 'Lib/multiprocessing/queues.py')
-rw-r--r-- | Lib/multiprocessing/queues.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/queues.py b/Lib/multiprocessing/queues.py index fa8a13a..5df5882 100644 --- a/Lib/multiprocessing/queues.py +++ b/Lib/multiprocessing/queues.py @@ -109,7 +109,7 @@ class Queue(object): self._rlock.release() def qsize(self): - # Raises NotImplementError on Mac OSX because of broken sem_getvalue() + # Raises NotImplementedError on Mac OSX because of broken sem_getvalue() return self._maxsize - self._sem._semlock._get_value() def empty(self): |