[Python-3000-checkins] r62258 - python/branches/py3k/Doc/library/io.rst

benjamin.peterson python-3000-checkins at python.org
Wed Apr 9 23:38:38 CEST 2008


Author: benjamin.peterson
Date: Wed Apr  9 23:38:38 2008
New Revision: 62258

Modified:
   python/branches/py3k/Doc/library/io.rst
Log:
zap the last of the class.method typos in io docs


Modified: python/branches/py3k/Doc/library/io.rst
==============================================================================
--- python/branches/py3k/Doc/library/io.rst	(original)
+++ python/branches/py3k/Doc/library/io.rst	Wed Apr  9 23:38:38 2008
@@ -248,14 +248,14 @@
    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.
 


More information about the Python-3000-checkins mailing list