]> granicus.if.org Git - python/commitdiff
Fix nit in comment.
authorRaymond Hettinger <python@rcn.com>
Sat, 2 Dec 2006 01:57:21 +0000 (01:57 +0000)
committerRaymond Hettinger <python@rcn.com>
Sat, 2 Dec 2006 01:57:21 +0000 (01:57 +0000)
Lib/Queue.py

index 0f80584b7ae86d8e3a514eaa773d91f005b655c5..79b0abf1418648aeec070dd63290bcd5117bcd5c 100644 (file)
@@ -26,7 +26,7 @@ class Queue:
         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