diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-01-27 22:48:30 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-01-27 22:48:30 (GMT) |
commit | 90cece7f8930cbfe5b87a61a1a67cfd670639c63 (patch) | |
tree | 55fc0a43084ee4935862d495c90d76e549158152 /Lib/threading.py | |
parent | 13a1fde4da63c92fdb86b6bcf4d2d21928c80bc8 (diff) | |
download | cpython-90cece7f8930cbfe5b87a61a1a67cfd670639c63.zip cpython-90cece7f8930cbfe5b87a61a1a67cfd670639c63.tar.gz cpython-90cece7f8930cbfe5b87a61a1a67cfd670639c63.tar.bz2 |
Fixed typo in verbose output.
Closes bug #1110998. Thanks Matthew Bogosian.
Diffstat (limited to 'Lib/threading.py')
-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 1aed551..cbcc1f9 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) |