diff options
author | Georg Brandl <georg@python.org> | 2009-06-08 18:41:36 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-08 18:41:36 +0000 |
commit | 0c6d16647984c6e274662bb64ee99bf2c1c2a86c (patch) | |
tree | 11f8986d0dc8f46cfeeb287319416f4b6ce94627 /Lib/multiprocessing/queues.py | |
parent | 2cc39ad242588c2f64c0457b9d243c9cb8462f51 (diff) | |
download | cpython-git-0c6d16647984c6e274662bb64ee99bf2c1c2a86c.tar.gz |
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 fa8a13a8c7..5df58825b5 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): |