This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author meador.inge
Recipients docs@python, meador.inge
Date 2011-12-01.04:59:04
SpamBayes Score 7.215395e-05
Marked as misclassified No
Message-id <1322715545.88.0.889616380344.issue13513@psf.upfronthosting.co.za>
In-reply-to
Content
The current IOBase documentation [1] reads:

"""
IOBase (and its subclasses) support the iterator protocol, meaning that an 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 readline() below.
"""

Currently the 'readline' link in the last sentence is linking to the GNU readline interface, which is wrong.  Patch attached.

[1] http://docs.python.org/dev/library/io.html?highlight=readlines#io.IOBase
History
Date User Action Args
2011-12-01 04:59:05meador.ingesetrecipients: + meador.inge, docs@python
2011-12-01 04:59:05meador.ingesetmessageid: <1322715545.88.0.889616380344.issue13513@psf.upfronthosting.co.za>
2011-12-01 04:59:05meador.ingelinkissue13513 messages
2011-12-01 04:59:04meador.ingecreate