From 9c2505b8fcb870824fac3478ca7091b770a228dc Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Oct 2013 13:17:04 +0200 Subject: Fix order of required StreamReader/StreamWriter base classes. Spotted by Edward Welbourne on docs@. --- Doc/library/codecs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index fcef948..a5a27a2 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 -- cgit v0.12