diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-01-27 22:48:30 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-01-27 22:48:30 +0000 |
commit | edd13c89a92067e3d3c1956132150eafee4a17b3 (patch) | |
tree | 692976f6d9942c9ab03b65b824fd7ae2c5ffcf9b /Lib/threading.py | |
parent | 31c0832c4bfbd6a212e5edae363607bfcd0251ba (diff) | |
download | cpython-edd13c89a92067e3d3c1956132150eafee4a17b3.tar.gz |
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 1aed551c5f..cbcc1f91b2 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) |