[Python-checkins] cpython (merge 3.3 -> default): Issue #18336. Fix a link to StreamReader's read() method.

serhiy.storchaka python-checkins at python.org
Thu Jul 11 17:33:30 CEST 2013


http://hg.python.org/cpython/rev/a53ac166fa58
changeset:   84543:a53ac166fa58
parent:      84539:7a50d3c0aa61
parent:      84542:8dd67c20cab7
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Thu Jul 11 18:27:20 2013 +0300
summary:
  Issue #18336. Fix a link to StreamReader's read() method.

files:
  Doc/library/codecs.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst
--- a/Doc/library/codecs.rst
+++ b/Doc/library/codecs.rst
@@ -694,7 +694,7 @@
       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.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list