Commit 52957183 authored by Meador Inge's avatar Meador Inge

Issue #13513: IOBase docs incorrectly link to the readline module

parent 974d863f
...@@ -233,7 +233,7 @@ I/O Base Classes ...@@ -233,7 +233,7 @@ I/O Base Classes
:class:`IOBase` object can be iterated over yielding the lines in a stream. :class:`IOBase` object can be iterated over yielding the lines in a stream.
Lines are defined slightly differently depending on whether the stream is Lines are defined slightly differently depending on whether the stream is
a binary stream (yielding :class:`bytes`), or a text stream (yielding a binary stream (yielding :class:`bytes`), or a text stream (yielding
:class:`unicode` strings). See :meth:`readline` below. :class:`unicode` strings). See :meth:`~IOBase.readline` below.
IOBase is also a context manager and therefore supports the IOBase is also a context manager and therefore supports the
:keyword:`with` statement. In this example, *file* is closed after the :keyword:`with` statement. In this example, *file* is closed after the
......
...@@ -430,6 +430,9 @@ Tests ...@@ -430,6 +430,9 @@ Tests
Documentation Documentation
------------- -------------
- Issue #13513: Fix io.IOBase documentation to correctly link to the
io.IOBase.readline method instead of the readline module.
- Issue #13237: Reorganise subprocess documentation to emphasise convenience - Issue #13237: Reorganise subprocess documentation to emphasise convenience
functions and the most commonly needed arguments to Popen. functions and the most commonly needed arguments to Popen.
......
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