Commit 39d3bfc4 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Fix a typo in a comment

parent 1ab41fc6
......@@ -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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment