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

type IncrementalDecoder

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

Instance Methods [hide private]
 
__init__(self, errors='strict')
Creates a IncrementalDecoder instance.
 
decode(self, input, final=False)
Decodes input and returns the resulting object.
 
reset(self)
Resets the decoder to the initial state.
Method Details [hide private]

__init__(self, errors='strict')
(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)

reset(self)

 

Resets the decoder to the initial state.

Overrides: codecs.IncrementalDecoder.reset
(inherited documentation)