]> granicus.if.org Git - python/commitdiff
Fix some comment typos
authorNeal Norwitz <nnorwitz@gmail.com>
Fri, 25 Nov 2005 02:02:50 +0000 (02:02 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Fri, 25 Nov 2005 02:02:50 +0000 (02:02 +0000)
Lib/_threading_local.py

index c90fde06538420e273923aef3df597ddd5aceaa8..90717a8d84c99bd37138c0c51c211388537f81a8 100644 (file)
@@ -149,7 +149,7 @@ class _localbase(object):
             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