codecs.replace_errors()

codecs.replace_errors(exception) Implements the 'replace' error handling (for text

2016-10-07 17:28:45
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.getencoder()

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

2016-10-07 17:28:40
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.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.decode()

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

2016-10-07 17:28:39
codecs.CodecInfo.streamwriter

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

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

codecs.backslashreplace_errors(exception) Implements the 'backslashreplace' error handling (for

2016-10-07 17:28:37
codecs.getreader()

codecs.getreader(encoding) Look up the codec for the given encoding and return its StreamReader class or factory

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

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

2016-10-07 17:28:49