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: v3.4.0a4~237^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c2505b8fcb870824fac3478ca7091b770a228dc;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 fcef948895..a5a27a2159 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -65,7 +65,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