[Python-checkins] commit of r41533 - python/trunk/Lib

neal.norwitz@python.org neal.norwitz at python.org
Fri Nov 25 03:02:55 CET 2005


Author: neal.norwitz
Date: Fri Nov 25 03:02:50 2005
New Revision: 41533

Modified:
   python/trunk/Lib/_threading_local.py
Log:
Fix some comment typos

Modified: python/trunk/Lib/_threading_local.py
==============================================================================
--- python/trunk/Lib/_threading_local.py	(original)
+++ python/trunk/Lib/_threading_local.py	Fri Nov 25 03:02:50 2005
@@ -149,7 +149,7 @@
             raise TypeError("Initialization arguments are not supported")
 
         # We need to create the thread dict in anticipation of
-        # __init__ being called, to make sire we don't cal it
+        # __init__ being called, to make sure we don't call it
         # again ourselves.
         dict = object.__getattribute__(self, '__dict__')
         currentThread().__dict__[key] = dict


More information about the Python-checkins mailing list