]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed typo in verbose output for RLock acquire.
authorBrett Cannon <bcannon@gmail.com>
Thu, 27 Jan 2005 22:49:39 +0000 (22:49 +0000)
committerBrett Cannon <bcannon@gmail.com>
Thu, 27 Jan 2005 22:49:39 +0000 (22:49 +0000)
Fixes bug #1110998.

Lib/threading.py

index 860c2fdd33c442b513f7ae9e95a8cbbb1216f80f..6def594326cc409285e8f5b8fab014df76e438e8 100644 (file)
@@ -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)