]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed typo in verbose output.
authorBrett Cannon <bcannon@gmail.com>
Thu, 27 Jan 2005 22:48:30 +0000 (22:48 +0000)
committerBrett Cannon <bcannon@gmail.com>
Thu, 27 Jan 2005 22:48:30 +0000 (22:48 +0000)
Closes bug #1110998.  Thanks Matthew Bogosian.

Lib/threading.py

index 1aed551c5ff318b6e25d71f475d9d3063cc010fc..cbcc1f91b280f8a06289d45626b12a55166c1391 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)