summaryrefslogtreecommitdiff
path: root/Lib/codecs.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-16 07:49:19 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-16 07:49:19 +0000
commit6bed1c1fab3e89c459ed58f1d312de220d7c858e (patch)
tree43c3c60d89b4d193ca59db3363fc913f5c84162c /Lib/codecs.py
parent922ff4a32128a562b2368ab50865020311fe4a7c (diff)
downloadcpython-git-6bed1c1fab3e89c459ed58f1d312de220d7c858e.tar.gz
Add some versionadded info to new incremental codec docs and fix doco nits.
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r--Lib/codecs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py
index 28856c714e..ba03d1481d 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