diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-05-21 11:56:35 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-05-21 11:56:35 (GMT) |
commit | 732ba821ca23577c643d56de7226e6d9062b2a31 (patch) | |
tree | f58ff5dd2057a69550b75ae2917d75d9e8e93b43 /Doc/library/codecs.rst | |
parent | eaaaee8c569475614d16e3abf087228673bce9fc (diff) | |
download | cpython-732ba821ca23577c643d56de7226e6d9062b2a31.zip cpython-732ba821ca23577c643d56de7226e6d9062b2a31.tar.gz cpython-732ba821ca23577c643d56de7226e6d9062b2a31.tar.bz2 |
Issue #27075: Link to StreamReader and StreamWriter docs
Patch by Ville Skyttä.
Diffstat (limited to 'Doc/library/codecs.rst')
-rw-r--r-- | Doc/library/codecs.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 577a800..a2530de 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -137,16 +137,16 @@ these additional functions which use :func:`lookup` for the codec lookup: .. 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. |