From: Serhiy Storchaka Date: Thu, 11 Jul 2013 15:26:13 +0000 (+0300) Subject: Issue #18336. Fix a link to StreamReader's read() method. X-Git-Tag: v3.4.0a1~263^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cca40ffa974ed8ed83b3b2bfb496f8c50ccbb241;p=python Issue #18336. Fix a link to StreamReader's read() method. --- diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index e80fc3a33d..fcef948895 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -694,7 +694,7 @@ compatible with the Python codec registry. Read one line from the input stream and return the decoded data. *size*, if given, is passed as size argument to the stream's - :meth:`readline` method. + :meth:`read` method. If *keepends* is false line-endings will be stripped from the lines returned.