[Python-3000-checkins] r62185 - python/branches/py3k/Lib/io.py

benjamin.peterson python-3000-checkins at python.org
Sun Apr 6 18:47:13 CEST 2008


Author: benjamin.peterson
Date: Sun Apr  6 18:47:13 2008
New Revision: 62185

Modified:
   python/branches/py3k/Lib/io.py
Log:
fix typo in doc string


Modified: python/branches/py3k/Lib/io.py
==============================================================================
--- python/branches/py3k/Lib/io.py	(original)
+++ python/branches/py3k/Lib/io.py	Sun Apr  6 18:47:13 2008
@@ -228,8 +228,8 @@
     This does not define read(), readinto() and write(), nor
     readline() and friends, since their signatures vary per layer.
 
-    Not that calling any method (even inquiries) on a closed file is
-    undefined.  Implementations may raise IOError in this case.
+    Note that calling any method (even inquiries) on a closed file is
+    undefined. Implementations may raise IOError in this case.
     """
 
     ### Internal ###


More information about the Python-3000-checkins mailing list