From 42dac47c960f97b4a7d325dcc822d2024e45eca2 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Oct 2013 13:17:04 +0200 Subject: [PATCH] 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 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 -- 2.50.1