From: Raymond Hettinger Date: Thu, 23 Nov 2006 21:35:19 +0000 (+0000) Subject: ... and the number of the counting shall be three. X-Git-Tag: v2.6a1~2405 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3c77677caf9724ac2a9ba1183d3e594d78dfc5c;p=python ... and the number of the counting shall be three. --- diff --git a/Lib/Queue.py b/Lib/Queue.py index 0f80584b7a..79b0abf141 100644 --- a/Lib/Queue.py +++ b/Lib/Queue.py @@ -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