From: Andrew M. Kuchling Date: Tue, 29 Feb 2000 00:10:24 +0000 (+0000) Subject: Fix a typo in a comment X-Git-Tag: v1.6a1~330 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39d3bfc4c270b0c59f7765e81075afe93f44fe6c;p=thirdparty%2FPython%2Fcpython.git Fix a typo in a comment --- diff --git a/Lib/threading.py b/Lib/threading.py index 8d27faf6bba0..ded573a4c4f7 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"