From: Georg Brandl Date: Sun, 6 Oct 2013 11:17:04 +0000 (+0200) Subject: Fix order of required StreamReader/StreamWriter base classes. Spotted by Edward... X-Git-Tag: v2.7.6rc1~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=42dac47c960f97b4a7d325dcc822d2024e45eca2;p=python Fix order of required StreamReader/StreamWriter base classes. Spotted by Edward Welbourne on docs@. --- diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 61da3ed9e7..d283edeb4c 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -66,7 +66,7 @@ It defines the following functions: ``factory(stream, errors='strict')`` The factory functions must return objects providing the interfaces defined by - the base classes :class:`StreamWriter` and :class:`StreamReader`, respectively. + the base classes :class:`StreamReader` and :class:`StreamWriter`, respectively. Stream codecs can maintain state. Possible values for errors are