From: Benjamin Peterson Date: Wed, 9 Apr 2008 21:38:38 +0000 (+0000) Subject: zap the last of the class.method typos in io docs X-Git-Tag: v3.0a5~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b47aace423cee34acd0aae5678bcda1276adbc47;p=thirdparty%2FPython%2Fcpython.git zap the last of the class.method typos in io docs --- diff --git a/Doc/library/io.rst b/Doc/library/io.rst index ec0d51ed3335..a3e492e381d3 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.