diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-05 00:46:27 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-05 00:46:27 (GMT) |
commit | 8f2b665dfa6980cd643c3df37a7358b6a23026b6 (patch) | |
tree | a88bc4a8f5d93fa9a14c71c5bd651ef94952ba60 /Modules | |
parent | bd35b035e9fda7fe3cc95f90bd40a3354bf9f4d0 (diff) | |
download | cpython-8f2b665dfa6980cd643c3df37a7358b6a23026b6.zip cpython-8f2b665dfa6980cd643c3df37a7358b6a23026b6.tar.gz cpython-8f2b665dfa6980cd643c3df37a7358b6a23026b6.tar.bz2 |
fix typo #5687
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_io/_iomodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/_iomodule.c b/Modules/_io/_iomodule.c index 58b5798..1bba13a 100644 --- a/Modules/_io/_iomodule.c +++ b/Modules/_io/_iomodule.c @@ -60,7 +60,7 @@ PyDoc_STRVAR(module_doc, "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" |