diff options
author | Meador Inge <meadori@gmail.com> | 2011-12-03 18:29:54 (GMT) |
---|---|---|
committer | Meador Inge <meadori@gmail.com> | 2011-12-03 18:29:54 (GMT) |
commit | 777bebb0efe025f2e050d08206ae336934387ad7 (patch) | |
tree | da7a592b92cdc56552b3ceb15052c2ce64f3976d /Doc | |
parent | aa204dbe9c83302781f7b9d7df6db225b3661f9e (diff) | |
download | cpython-777bebb0efe025f2e050d08206ae336934387ad7.zip cpython-777bebb0efe025f2e050d08206ae336934387ad7.tar.gz cpython-777bebb0efe025f2e050d08206ae336934387ad7.tar.bz2 |
Issue #13513: IOBase docs incorrectly link to the readline module
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/io.rst | 2 |
1 files changed, 1 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 |