[Python-checkins] cpython (merge 3.5 -> default): Issue #27075: Link to StreamReader and StreamWriter docs

berker.peksag python-checkins at python.org
Sat May 21 07:56:32 EDT 2016


https://hg.python.org/cpython/rev/b11b71aaf864
changeset:   101462:b11b71aaf864
parent:      101460:e0212060c80e
parent:      101461:c1628c1162a4
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Sat May 21 14:56:53 2016 +0300
summary:
  Issue #27075: Link to StreamReader and StreamWriter docs

Patch by Ville Skyttä.

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


diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst
--- a/Doc/library/codecs.rst
+++ b/Doc/library/codecs.rst
@@ -137,16 +137,16 @@
 
 .. function:: getreader(encoding)
 
-   Look up the codec for the given encoding and return its StreamReader class or
-   factory function.
+   Look up the codec for the given encoding and return its :class:`StreamReader`
+   class or factory function.
 
    Raises a :exc:`LookupError` in case the encoding cannot be found.
 
 
 .. function:: getwriter(encoding)
 
-   Look up the codec for the given encoding and return its StreamWriter class or
-   factory function.
+   Look up the codec for the given encoding and return its :class:`StreamWriter`
+   class or factory function.
 
    Raises a :exc:`LookupError` in case the encoding cannot be found.
 

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


More information about the Python-checkins mailing list