[Python-checkins] cpython (3.3): Fix order of required StreamReader/StreamWriter base classes. Spotted by
georg.brandl
python-checkins at python.org
Sun Oct 6 13:16:30 CEST 2013
http://hg.python.org/cpython/rev/a5d645505298
changeset: 86083:a5d645505298
branch: 3.3
parent: 86080:4c691f3180b3
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
@@ -65,7 +65,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