diff options
author | Raymond Hettinger <python@rcn.com> | 2006-12-02 01:57:21 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2006-12-02 01:57:21 (GMT) |
commit | 1c305dbf978021b4609b43338fc037b36cc1ed38 (patch) | |
tree | 918556c8509e13744420f682cbea7ba06184dea6 /Lib/Queue.py | |
parent | 1bc1ab23d3969b792e5861559e023baeec44dfd6 (diff) | |
download | cpython-1c305dbf978021b4609b43338fc037b36cc1ed38.zip cpython-1c305dbf978021b4609b43338fc037b36cc1ed38.tar.gz cpython-1c305dbf978021b4609b43338fc037b36cc1ed38.tar.bz2 |
Fix nit in comment.
Diffstat (limited to 'Lib/Queue.py')
-rw-r--r-- | Lib/Queue.py | 2 |
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 |