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

Class IncrementalDecoder

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

Instance Methods [hide private]
 
__init__(self, errors='strict')
Creates a IncrementalDecoder instance.
 
_buffer_decode(self, input, errors, final)
 
reset(self)
Resets the decoder to the initial state.

Inherited from codecs.BufferedIncrementalDecoder: decode

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')
(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)

_buffer_decode(self, input, errors, final)

 
Overrides: codecs.BufferedIncrementalDecoder._buffer_decode

reset(self)

 

Resets the decoder to the initial state.

Overrides: codecs.IncrementalDecoder.reset
(inherited documentation)