projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ab41fc
)
Fix a typo in a comment
author
Andrew M. Kuchling
<amk@amk.ca>
Tue, 29 Feb 2000 00:10:24 +0000
(
00:10
+0000)
committer
Andrew M. Kuchling
<amk@amk.ca>
Tue, 29 Feb 2000 00:10:24 +0000
(
00:10
+0000)
Lib/threading.py
patch
|
blob
|
history
diff --git
a/Lib/threading.py
b/Lib/threading.py
index 8d27faf6bba0d1fa7c984d242ab1255a5540515e..ded573a4c4f7d5a4ba857e2b6850fd289b4ae5ce 100644
(file)
--- 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
b
not 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"