[Python-checkins] cpython (2.7): Fix order of required StreamReader/StreamWriter base classes. Spotted by

georg.brandl python-checkins at python.org
Sun Oct 6 13:16:38 CEST 2013


http://hg.python.org/cpython/rev/8b6dd8e6c4fc
changeset:   86085:8b6dd8e6c4fc
branch:      2.7
parent:      86082:2319f6e1980c
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 06 13:17:04 2013 +0200
summary:
  Fix order of required StreamReader/StreamWriter base classes.  Spotted by Edward Welbourne on docs at .

files:
  Doc/library/codecs.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst
--- a/Doc/library/codecs.rst
+++ b/Doc/library/codecs.rst
@@ -66,7 +66,7 @@
       ``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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list