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
codecs.IncrementalDecoder.decode()

decode(object[, final]) Decodes object (taking the current state of the decoder into account) and returns the resulting

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

decode The stateless encoding and decoding functions. These must be functions or methods which have the same interface as the

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

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

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

reset() Resets the codec buffers used for keeping state. Note that no stream repositioning should

2016-10-07 17:28:47
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.StreamWriter.write()

write(object) Writes the object’s contents encoded to the stream.

2016-10-07 17:28:48