From: Neal Norwitz Date: Fri, 25 Nov 2005 02:02:50 +0000 (+0000) Subject: Fix some comment typos X-Git-Tag: v2.5a0~1109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7025ce6fb06c273d929bd3cd26435b9140ead969;p=thirdparty%2FPython%2Fcpython.git Fix some comment typos --- diff --git a/Lib/_threading_local.py b/Lib/_threading_local.py index c90fde065384..90717a8d84c9 100644 --- a/Lib/_threading_local.py +++ b/Lib/_threading_local.py @@ -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