diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-04-27 21:15:28 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-04-27 21:15:28 (GMT) |
commit | 5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa (patch) | |
tree | 8c159246469f91d08083d892bf11bdb51255c265 | |
parent | a9bd6d5ea7b822e12fa3c080fe24b04a87bcae56 (diff) | |
download | cpython-5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa.zip cpython-5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa.tar.gz cpython-5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa.tar.bz2 |
fix comment
-rw-r--r-- | Lib/_pyio.py | 2 |
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: |