From: Brett Cannon Date: Thu, 27 Jan 2005 22:52:09 +0000 (+0000) Subject: Fix typo in verbose output for RLock when the initial lock acquisition occurs. X-Git-Tag: v2.3.5~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=392b2cb4bc02676f698e1a68d4351bb5b93c6569;p=thirdparty%2FPython%2Fcpython.git Fix typo in verbose output for RLock when the initial lock acquisition occurs. Closes bug #1110998. --- diff --git a/Lib/threading.py b/Lib/threading.py index a1527775b427..94bd12934038 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)