Issue #27075: Link to StreamReader and StreamWriter docs

Patch by Ville Skyttä.
This commit is contained in:
Berker Peksag 2016-05-21 14:56:53 +03:00
commit bab6d16ef3

View file

@ -137,16 +137,16 @@ these additional functions which use :func:`lookup` for the codec lookup:
.. function:: getreader(encoding) .. function:: getreader(encoding)
Look up the codec for the given encoding and return its StreamReader class or Look up the codec for the given encoding and return its :class:`StreamReader`
factory function. class or factory function.
Raises a :exc:`LookupError` in case the encoding cannot be found. Raises a :exc:`LookupError` in case the encoding cannot be found.
.. function:: getwriter(encoding) .. function:: getwriter(encoding)
Look up the codec for the given encoding and return its StreamWriter class or Look up the codec for the given encoding and return its :class:`StreamWriter`
factory function. class or factory function.
Raises a :exc:`LookupError` in case the encoding cannot be found. Raises a :exc:`LookupError` in case the encoding cannot be found.