mirror of
https://github.com/python/cpython.git
synced 2025-10-01 04:42:10 +00:00
zap the last of the class.method typos in io docs
This commit is contained in:
parent
ddee3081e8
commit
b47aace423
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue