[Python-checkins] r71205 - python/branches/py3k/Modules/_io/_iomodule.c

benjamin.peterson python-checkins at python.org
Sun Apr 5 02:46:27 CEST 2009


Author: benjamin.peterson
Date: Sun Apr  5 02:46:27 2009
New Revision: 71205

Log:
fix typo #5687

Modified:
   python/branches/py3k/Modules/_io/_iomodule.c

Modified: python/branches/py3k/Modules/_io/_iomodule.c
==============================================================================
--- python/branches/py3k/Modules/_io/_iomodule.c	(original)
+++ python/branches/py3k/Modules/_io/_iomodule.c	Sun Apr  5 02:46:27 2009
@@ -60,7 +60,7 @@
 "allowed to throw an IOError if they do not support a given operation.\n"
 "\n"
 "Extending IOBase is RawIOBase which deals simply with the reading and\n"
-"writing of raw bytes to a stream. FileIO subc lasses RawIOBase to provide\n"
+"writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide\n"
 "an interface to OS files.\n"
 "\n"
 "BufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its\n"


More information about the Python-checkins mailing list