diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-25 02:02:50 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-25 02:02:50 (GMT) |
commit | 7025ce6fb06c273d929bd3cd26435b9140ead969 (patch) | |
tree | 489479bb03f5e8e9e4bd0c51b77fdbfe950362f4 | |
parent | 2fcf206a6f916003e891232a08d3a98cdf48a024 (diff) | |
download | cpython-7025ce6fb06c273d929bd3cd26435b9140ead969.zip cpython-7025ce6fb06c273d929bd3cd26435b9140ead969.tar.gz cpython-7025ce6fb06c273d929bd3cd26435b9140ead969.tar.bz2 |
Fix some comment typos
-rw-r--r-- | Lib/_threading_local.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_threading_local.py b/Lib/_threading_local.py index c90fde0..90717a8 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 |