Kaydet (Commit) b47aace4 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

zap the last of the class.method typos in io docs

üst ddee3081
...@@ -248,14 +248,14 @@ I/O Base Classes ...@@ -248,14 +248,14 @@ I/O Base Classes
RawIOBase provides or overrides these methods in addition to those from RawIOBase provides or overrides these methods in addition to those from
:class:`IOBase`: :class:`IOBase`:
.. method:: RawIOBase.read([n]) .. method:: read([n])
Read and return all bytes from the stream until EOF, or if *n* is 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; 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 ``None`` is returned if the object is set not to block and has no data to
read. read.
.. method:: RawIOBase.readall() .. method:: readall()
Read and return all bytes from the stream until EOF. Read and return all bytes from the stream until EOF.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment