diff options
author | Meador Inge <meadori@gmail.com> | 2011-12-03 18:50:18 (GMT) |
---|---|---|
committer | Meador Inge <meadori@gmail.com> | 2011-12-03 18:50:18 (GMT) |
commit | 80c219b5e730e013d5c0aea2b5ab7ad8edce917c (patch) | |
tree | 5b510bedbdda03f61ce05e807b7f62046f9526d1 /Doc | |
parent | fe0472e7de606d5de03684ec36f7a32628f1c72d (diff) | |
parent | 777bebb0efe025f2e050d08206ae336934387ad7 (diff) | |
download | cpython-80c219b5e730e013d5c0aea2b5ab7ad8edce917c.zip cpython-80c219b5e730e013d5c0aea2b5ab7ad8edce917c.tar.gz cpython-80c219b5e730e013d5c0aea2b5ab7ad8edce917c.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 1da7e4c..85e8c5b 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -213,7 +213,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 |