]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
zap the last of the class.method typos in io docs
authorBenjamin Peterson <benjamin@python.org>
Wed, 9 Apr 2008 21:38:38 +0000 (21:38 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 9 Apr 2008 21:38:38 +0000 (21:38 +0000)
Doc/library/io.rst

index ec0d51ed3335ebeb3df4e6d3a682d0d35327ad46..a3e492e381d377566cdd3b1c953c0296b2da3f0a 100644 (file)
@@ -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.