summaryrefslogtreecommitdiff
path: root/Lib/_threading_local.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-11-25 02:02:50 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2005-11-25 02:02:50 +0000
commit2159f857c9a727171e7d86244a128bb5126c0e58 (patch)
treed175403c1802e8bef74e4fdd2e6639d016f9db1e /Lib/_threading_local.py
parent8ac4d34335f464f9b2c8bfeb6a3e8d4a342bad8a (diff)
downloadcpython-2159f857c9a727171e7d86244a128bb5126c0e58.tar.gz
Fix some comment typos
Diffstat (limited to 'Lib/_threading_local.py')
-rw-r--r--Lib/_threading_local.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_threading_local.py b/Lib/_threading_local.py
index c90fde0653..90717a8d84 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