diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-12-13 21:25:28 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-12-13 21:25:28 (GMT) |
commit | 5f4ec0451cdaf2196f87894df91b50b39e0be05c (patch) | |
tree | 4e3a533eca75b7c1e713f3e6ee977b39d400c969 /Lib/encodings | |
parent | 85266da5d408e9f35777538e9df426014861acc0 (diff) | |
download | cpython-5f4ec0451cdaf2196f87894df91b50b39e0be05c.zip cpython-5f4ec0451cdaf2196f87894df91b50b39e0be05c.tar.gz cpython-5f4ec0451cdaf2196f87894df91b50b39e0be05c.tar.bz2 |
Fix a minor grammatical error.
Diffstat (limited to 'Lib/encodings')
-rw-r--r-- | Lib/encodings/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/encodings/__init__.py b/Lib/encodings/__init__.py index d72eae9..b189bd9 100644 --- a/Lib/encodings/__init__.py +++ b/Lib/encodings/__init__.py @@ -10,7 +10,7 @@ Each codec module must export the following interface: * getregentry() -> codecs.CodecInfo object - The getregentry() API must a CodecInfo object with encoder, decoder, + The getregentry() API must return a CodecInfo object with encoder, decoder, incrementalencoder, incrementaldecoder, streamwriter and streamreader atttributes which adhere to the Python Codec Interface Standard. |