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

type 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

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: codecs.IncrementalDecoder.__init__
(inherited documentation)

decode(self, input, final=False)

 

Decodes input and returns the resulting object.

Overrides: codecs.IncrementalDecoder.decode
(inherited documentation)