[Python-checkins] r80546 - python/trunk/Lib/_pyio.py

benjamin.peterson python-checkins at python.org
Tue Apr 27 23:15:28 CEST 2010


Author: benjamin.peterson
Date: Tue Apr 27 23:15:28 2010
New Revision: 80546

Log:
fix comment

Modified:
   python/trunk/Lib/_pyio.py

Modified: python/trunk/Lib/_pyio.py
==============================================================================
--- python/trunk/Lib/_pyio.py	(original)
+++ python/trunk/Lib/_pyio.py	Tue Apr 27 23:15:28 2010
@@ -9,7 +9,7 @@
 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:


More information about the Python-checkins mailing list