diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-02-29 00:10:24 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-02-29 00:10:24 (GMT) |
commit | 39d3bfc4c270b0c59f7765e81075afe93f44fe6c (patch) | |
tree | 58104fa668eea68e8c893173bab7e20b0506e0b8 /Lib/threading.py | |
parent | 1ab41fc680f93dd11e7cdd78a143e72b11ab2a64 (diff) | |
download | cpython-39d3bfc4c270b0c59f7765e81075afe93f44fe6c.zip cpython-39d3bfc4c270b0c59f7765e81075afe93f44fe6c.tar.gz cpython-39d3bfc4c270b0c59f7765e81075afe93f44fe6c.tar.bz2 |
Fix a typo in a comment
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index 8d27faf..ded573a 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -237,7 +237,7 @@ def Semaphore(*args, **kwargs): class _Semaphore(_Verbose): - # After Tim Peters' semaphore class, but bnot quite the same (no maximum) + # After Tim Peters' semaphore class, but not quite the same (no maximum) def __init__(self, value=1, verbose=None): assert value >= 0, "Semaphore initial value must be >= 0" |