summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-04-27 21:15:28 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-04-27 21:15:28 (GMT)
commit5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa (patch)
tree8c159246469f91d08083d892bf11bdb51255c265
parenta9bd6d5ea7b822e12fa3c080fe24b04a87bcae56 (diff)
downloadcpython-5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa.zip
cpython-5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa.tar.gz
cpython-5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa.tar.bz2
fix comment
-rw-r--r--Lib/_pyio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py
index cafc51c..aea9a2e 100644
--- a/Lib/_pyio.py
+++ b/Lib/_pyio.py
@@ -9,7 +9,7 @@ import os
import abc
import codecs
import warnings
-# Import _thread instead of threading to reduce startup cost
+# Import thread instead of threading to reduce startup cost
try:
from thread import allocate_lock as Lock
except ImportError: