diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-26 20:43:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-26 20:43:24 (GMT) |
commit | 06abba3558f0be86134a569f9885b0edcfdbbe16 (patch) | |
tree | 2ca98748e7f8d43e7a5c35ea70cfe16f2f513b70 /Doc | |
parent | 9171bed69a05ba1ca0ece4a70725db87ba1e92eb (diff) | |
download | cpython-06abba3558f0be86134a569f9885b0edcfdbbe16.zip cpython-06abba3558f0be86134a569f9885b0edcfdbbe16.tar.gz cpython-06abba3558f0be86134a569f9885b0edcfdbbe16.tar.bz2 |
fix minor grammar typo
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/codecs.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 121dd28..87aceda 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -295,7 +295,8 @@ Codec Base Classes ------------------ The :mod:`codecs` module defines a set of base classes which define the -interface and can also be used to easily write you own codecs for use in Python. +interface and can also be used to easily write your own codecs for use in +Python. Each codec has to define four interfaces to make it usable as codec in Python: stateless encoder, stateless decoder, stream reader and stream writer. The |