diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-01-27 22:49:39 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-01-27 22:49:39 (GMT) |
commit | 22f1b0990faa2033850d44bfba29dcb3777a32ad (patch) | |
tree | f0d09fe65d8be960a95f4d32093e7f54b204d556 /Lib | |
parent | 486ff4bd92a2978dc6876545f555198149486e15 (diff) | |
download | cpython-22f1b0990faa2033850d44bfba29dcb3777a32ad.zip cpython-22f1b0990faa2033850d44bfba29dcb3777a32ad.tar.gz cpython-22f1b0990faa2033850d44bfba29dcb3777a32ad.tar.bz2 |
Fixed typo in verbose output for RLock acquire.
Fixes bug #1110998.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/threading.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index 860c2fd..6def594 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -102,7 +102,7 @@ class _RLock(_Verbose): self.__owner = me self.__count = 1 if __debug__: - self._note("%s.acquire(%s): initial succes", self, blocking) + self._note("%s.acquire(%s): initial success", self, blocking) else: if __debug__: self._note("%s.acquire(%s): failure", self, blocking) |