summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2006-11-23 21:35:19 (GMT)
committerRaymond Hettinger <python@rcn.com>2006-11-23 21:35:19 (GMT)
commita3c77677caf9724ac2a9ba1183d3e594d78dfc5c (patch)
tree8eb39211fde2412e9f426805ed4f3627eea0a0bb /Lib
parenta912c6c8916d0f8051bf40c5358322b8e0415c9f (diff)
downloadcpython-a3c77677caf9724ac2a9ba1183d3e594d78dfc5c.zip
cpython-a3c77677caf9724ac2a9ba1183d3e594d78dfc5c.tar.gz
cpython-a3c77677caf9724ac2a9ba1183d3e594d78dfc5c.tar.bz2
... and the number of the counting shall be three.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/Queue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/Queue.py b/Lib/Queue.py
index 0f80584..79b0abf 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