New submission from Meador Inge <mead...@gmail.com>:

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

----------
assignee: docs@python
components: Documentation
files: IOBase.readline-doc.patch
keywords: patch
messages: 148702
nosy: docs@python, meador.inge
priority: normal
severity: normal
stage: patch review
status: open
title: IOBase docs incorrectly link to the GNU readline module
type: behavior
versions: Python 3.2, Python 3.3
Added file: http://bugs.python.org/file23825/IOBase.readline-doc.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13513>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to