summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/io.rst2
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index 4da6195..972820c 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -217,7 +217,7 @@ I/O Base Classes
:class:`IOBase` object can be iterated over yielding the lines in a stream.
Lines are defined slightly differently depending on whether the stream is
a binary stream (yielding bytes), or a text stream (yielding character
- strings). See :meth:`readline` below.
+ strings). See :meth:`~IOBase.readline` below.
IOBase is also a context manager and therefore supports the
:keyword:`with` statement. In this example, *file* is closed after the
diff --git a/Misc/NEWS b/Misc/NEWS
index b9700e9..c532464 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -316,6 +316,9 @@ Extension Modules
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
functions and the most commonly needed arguments to Popen.