Package encodings :: Module charmap :: Class IncrementalDecoder
[hide private]
[frames] | no frames]

Class IncrementalDecoder

               object --+    
                        |    
codecs.IncrementalDecoder --+
                            |
                           IncrementalDecoder

Instance Methods [hide private]
 
__init__(self, errors='strict', mapping=None)
Creates a IncrementalDecoder instance.
 
decode(self, input, final=False)
Decodes input and returns the resulting object.

Inherited from codecs.IncrementalDecoder: reset

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, errors='strict', mapping=None)
(Constructor)

 

Creates a IncrementalDecoder instance.

The IncrementalDecoder may use different error handling schemes by providing the errors keyword argument. See the module docstring for a list of possible values.

Overrides: object.__init__
(inherited documentation)

decode(self, input, final=False)

 

Decodes input and returns the resulting object.

Overrides: codecs.IncrementalDecoder.decode
(inherited documentation)