[issue18336] codecs: Link to readline module (history) instead of fd.readline()

2013-07-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue18336] codecs: Link to readline module (history) instead of fd.readline()

2013-07-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Actually it should be a link to the read() method. -- resolution: -> fixed stage: needs patch -> committed/rejected ___ Python tracker ___ __

[issue18336] codecs: Link to readline module (history) instead of fd.readline()

2013-07-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7e186bb1642c by Serhiy Storchaka in branch '2.7': Issue #18336. Fix a link to StreamReader's read() method. http://hg.python.org/cpython/rev/7e186bb1642c New changeset 8dd67c20cab7 by Serhiy Storchaka in branch '3.3': Issue #18336. Fix a link to Str

[issue18336] codecs: Link to readline module (history) instead of fd.readline()

2013-07-06 Thread Senko Rasic
Senko Rasic added the comment: Here's a patch just removing the reference. Although potentially referencing io.IOBase.readline instead would be more correct, IMHO it'd be just more confusing to users reading the docs. -- keywords: +patch nosy: +senko Added file: http://bugs.python.org/

[issue18336] codecs: Link to readline module (history) instead of fd.readline()

2013-07-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: docs@python -> serhiy.storchaka keywords: +easy nosy: +serhiy.storchaka stage: -> needs patch versions: +Python 3.3, Python 3.4 ___ Python tracker ___

[issue18336] codecs: Link to readline module (history) instead of fd.readline()

2013-07-01 Thread Thomas Guettler
New submission from Thomas Guettler: The documentation of codecs.readline() has a link to the readline module. That the same word with a total different meaning! http://docs.python.org/2/library/codecs.html?highlight=readline#codecs.StreamReader.readline The GNU readline module is about the hi