codecs.StreamReader

class codecs.StreamReader(stream, errors='strict') Constructor for a StreamReader instance. All

2016-10-07 17:28:46
codecs.CodecInfo.streamreader

streamreader Stream writer and reader classes or factory functions. These have to provide the interface defined by the base

2016-10-07 17:28:38
codecs.lookup_error()

codecs.lookup_error(name) Return the error handler previously registered under the name name. Raises

2016-10-07 17:28:44
codecs.EncodedFile()

codecs.EncodedFile(file, data_encoding, file_encoding=None, errors='strict') Return a StreamRecoder instance, a

2016-10-07 17:28:39
codecs.IncrementalEncoder.setstate()

IncrementalEncoder.setstate(state) Set the state of the encoder to state. state must be an encoder state returned

2016-10-07 17:28:43
codecs.IncrementalEncoder.reset()

reset() Reset the encoder to the initial state. The output is discarded: call .encode(object, final=True), passing

2016-10-07 17:28:43
codecs.register()

codecs.register(search_function) Register a codec search function. Search functions are expected to take one argument, being

2016-10-07 17:28:45
codecs.encode()

codecs.encode(obj, encoding='utf-8', errors='strict') Encodes obj using the codec registered for encoding

2016-10-07 17:28:39
codecs.xmlcharrefreplace_errors()

codecs.xmlcharrefreplace_errors(exception) Implements the 'xmlcharrefreplace' error handling (for encoding with

2016-10-07 17:28:49
codecs.getencoder()

codecs.getencoder(encoding) Look up the codec for the given encoding and return its encoder function. Raises

2016-10-07 17:28:40