Orbits  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
Public Member Functions | Public Attributes | Private Member Functions | List of all members
codecs.BufferedIncrementalDecoder Class Reference
Inheritance diagram for codecs.BufferedIncrementalDecoder:
codecs.IncrementalDecoder _object encodings.idna.IncrementalDecoder encodings.mbcs.IncrementalDecoder encodings.utf_16.IncrementalDecoder encodings.utf_16_be.IncrementalDecoder encodings.utf_16_le.IncrementalDecoder encodings.utf_32.IncrementalDecoder encodings.utf_32_be.IncrementalDecoder encodings.utf_32_le.IncrementalDecoder encodings.utf_7.IncrementalDecoder encodings.utf_8.IncrementalDecoder encodings.utf_8_sig.IncrementalDecoder

Public Member Functions

def __init__
 
def decode
 
def reset
 
def getstate
 
def setstate
 
- Public Member Functions inherited from codecs.IncrementalDecoder
def __init__
 
def decode
 
def reset
 
def getstate
 
def setstate
 

Public Attributes

 buffer
 
- Public Attributes inherited from codecs.IncrementalDecoder
 errors
 

Private Member Functions

def _buffer_decode
 

Detailed Description

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.

Constructor & Destructor Documentation

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

Member Function Documentation

def codecs.BufferedIncrementalDecoder._buffer_decode (   self,
  input,
  errors,
  final 
)
private
def codecs.BufferedIncrementalDecoder.decode (   self,
  input,
  final = False 
)
def codecs.BufferedIncrementalDecoder.getstate (   self)
def codecs.BufferedIncrementalDecoder.reset (   self)
def codecs.BufferedIncrementalDecoder.setstate (   self,
  state 
)

Member Data Documentation

codecs.BufferedIncrementalDecoder.buffer

The documentation for this class was generated from the following file:

Copyright 2014 Google Inc. All rights reserved.