Skip to content

Commit 7025ce6

Browse files
committed
Fix some comment typos
1 parent 2fcf206 commit 7025ce6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/_threading_local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def __new__(cls, *args, **kw):
149149
raise TypeError("Initialization arguments are not supported")
150150

151151
# We need to create the thread dict in anticipation of
152-
# __init__ being called, to make sire we don't cal it
152+
# __init__ being called, to make sure we don't call it
153153
# again ourselves.
154154
dict = object.__getattribute__(self, '__dict__')
155155
currentThread().__dict__[key] = dict

0 commit comments

Comments
 (0)