diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-16 07:49:19 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-16 07:49:19 (GMT) |
commit | 6bed1c1fab3e89c459ed58f1d312de220d7c858e (patch) | |
tree | 43c3c60d89b4d193ca59db3363fc913f5c84162c /Lib | |
parent | 922ff4a32128a562b2368ab50865020311fe4a7c (diff) | |
download | cpython-6bed1c1fab3e89c459ed58f1d312de220d7c858e.zip cpython-6bed1c1fab3e89c459ed58f1d312de220d7c858e.tar.gz cpython-6bed1c1fab3e89c459ed58f1d312de220d7c858e.tar.bz2 |
Add some versionadded info to new incremental codec docs and fix doco nits.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/codecs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index 28856c7..ba03d14 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -156,13 +156,13 @@ class Codec: class IncrementalEncoder(object): """ - A IncrementalEncoder encodes an input in multiple steps. The input can be + An IncrementalEncoder encodes an input in multiple steps. The input can be passed piece by piece to the encode() method. The IncrementalEncoder remembers the state of the Encoding process between calls to encode(). """ def __init__(self, errors='strict'): """ - Creates a IncrementalEncoder instance. + Creates an IncrementalEncoder instance. The IncrementalEncoder may use different error handling schemes by providing the errors keyword argument. See the module docstring |