From: Raymond Hettinger Date: Sat, 2 Dec 2006 01:57:21 +0000 (+0000) Subject: Fix nit in comment. X-Git-Tag: v2.5.1c1~230 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c305dbf978021b4609b43338fc037b36cc1ed38;p=thirdparty%2FPython%2Fcpython.git Fix nit in comment. --- diff --git a/Lib/Queue.py b/Lib/Queue.py index 0f80584b7ae8..79b0abf14186 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