[Python-checkins] r52899 - python/branches/release25-maint/Lib/Queue.py

raymond.hettinger python-checkins at python.org
Sat Dec 2 02:57:22 CET 2006


Author: raymond.hettinger
Date: Sat Dec  2 02:57:21 2006
New Revision: 52899

Modified:
   python/branches/release25-maint/Lib/Queue.py
Log:
Fix nit in comment.

Modified: python/branches/release25-maint/Lib/Queue.py
==============================================================================
--- python/branches/release25-maint/Lib/Queue.py	(original)
+++ python/branches/release25-maint/Lib/Queue.py	Sat Dec  2 02:57:21 2006
@@ -26,7 +26,7 @@
         self._init(maxsize)
         # mutex must be held whenever the queue is mutating.  All methods
         # that acquire mutex must release it before returning.  mutex
-        # is shared between the two conditions, so acquiring and
+        # is shared between the three conditions, so acquiring and
         # releasing the conditions also acquires and releases mutex.
         self.mutex = threading.Lock()
         # Notify not_empty whenever an item is added to the queue; a


More information about the Python-checkins mailing list