From 732ba821ca23577c643d56de7226e6d9062b2a31 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sat, 21 May 2016 14:56:35 +0300 Subject: [PATCH] Issue #27075: Link to StreamReader and StreamWriter docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch by Ville Skyttä. --- Doc/library/codecs.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 577a800fdf3..a2530deff2c 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.