This subclass of IncrementalDecoder can be used as the baseclass for
an incremental decoder if the decoder must be able to handle incomplete
byte sequences.
|
|
__init__(self,
errors='strict')
Creates a IncrementalDecoder instance. |
|
|
|
|
| _buffer_decode(self,
input,
errors,
final) |
|
|
|
|
decode(self,
input,
final=False)
Decodes input and returns the resulting object. |
|
|
|
|
reset(self)
Resets the decoder to the initial state. |
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|