[Python-checkins] r73299 - python/trunk/Lib/multiprocessing/queues.py

georg.brandl python-checkins at python.org
Mon Jun 8 20:41:36 CEST 2009


Author: georg.brandl
Date: Mon Jun  8 20:41:36 2009
New Revision: 73299

Log:
Typo fix.

Modified:
   python/trunk/Lib/multiprocessing/queues.py

Modified: python/trunk/Lib/multiprocessing/queues.py
==============================================================================
--- python/trunk/Lib/multiprocessing/queues.py	(original)
+++ python/trunk/Lib/multiprocessing/queues.py	Mon Jun  8 20:41:36 2009
@@ -109,7 +109,7 @@
                 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):


More information about the Python-checkins mailing list