diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-04-09 21:38:38 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-04-09 21:38:38 (GMT) |
commit | b47aace423cee34acd0aae5678bcda1276adbc47 (patch) | |
tree | 6c7dc4af8b76725d815a015bde41ef3c4bbefd41 /Doc/library/io.rst | |
parent | ddee3081e8b66bf482ed5e2bc11aaa211fc0e81a (diff) | |
download | cpython-b47aace423cee34acd0aae5678bcda1276adbc47.zip cpython-b47aace423cee34acd0aae5678bcda1276adbc47.tar.gz cpython-b47aace423cee34acd0aae5678bcda1276adbc47.tar.bz2 |
zap the last of the class.method typos in io docs
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r-- | Doc/library/io.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index ec0d51e..a3e492e 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -248,14 +248,14 @@ I/O Base Classes RawIOBase provides or overrides these methods in addition to those from :class:`IOBase`: - .. method:: RawIOBase.read([n]) + .. method:: read([n]) Read and return all bytes from the stream until EOF, or if *n* is specified, up to *n* bytes. An empty bytes object is returned on EOF; ``None`` is returned if the object is set not to block and has no data to read. - .. method:: RawIOBase.readall() + .. method:: readall() Read and return all bytes from the stream until EOF. |