]> granicus.if.org Git - python/commitdiff
Fix a typo in a comment
authorAndrew M. Kuchling <amk@amk.ca>
Tue, 29 Feb 2000 00:10:24 +0000 (00:10 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Tue, 29 Feb 2000 00:10:24 +0000 (00:10 +0000)
Lib/threading.py

index 8d27faf6bba0d1fa7c984d242ab1255a5540515e..ded573a4c4f7d5a4ba857e2b6850fd289b4ae5ce 100644 (file)
@@ -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"