[Python-checkins] python/dist/src/Lib threading.py,1.47,1.48

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Thu Jan 27 23:48:33 CET 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15668/Lib

Modified Files:
	threading.py 
Log Message:
Fixed typo in verbose output.

Closes bug #1110998.  Thanks Matthew Bogosian.


Index: threading.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/threading.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- threading.py	8 Jan 2005 07:30:42 -0000	1.47
+++ threading.py	27 Jan 2005 22:48:30 -0000	1.48
@@ -102,7 +102,7 @@
             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)



More information about the Python-checkins mailing list