Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 39d3bfc

Browse files
committed
Fix a typo in a comment
1 parent 1ab41fc commit 39d3bfc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/threading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def Semaphore(*args, **kwargs):
237237

238238
class _Semaphore(_Verbose):
239239

240-
# After Tim Peters' semaphore class, but bnot quite the same (no maximum)
240+
# After Tim Peters' semaphore class, but not quite the same (no maximum)
241241

242242
def __init__(self, value=1, verbose=None):
243243
assert value >= 0, "Semaphore initial value must be >= 0"

0 commit comments

Comments
 (0)