From 39d3bfc4c270b0c59f7765e81075afe93f44fe6c Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Tue, 29 Feb 2000 00:10:24 +0000 Subject: [PATCH] Fix a typo in a comment --- Lib/threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/threading.py b/Lib/threading.py index 8d27faf6bb..ded573a4c4 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" -- 2.40.0