struct.iter_unpack()

struct.iter_unpack(fmt, buffer) Iteratively unpack from the buffer buffer according to the format string fmt

2016-10-07 17:43:29
codecs.CodecInfo.incrementalencoder

incrementalencoder incrementaldecoder Incremental encoder and decoder classes or factory functions. These have to

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

codecs.register_error(name, error_handler) Register the error handling function error_handler under the name name

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

codecs.namereplace_errors(exception) Implements the 'namereplace' error handling (for encoding with

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

readline([size[, keepends]]) Read one line from the input stream and return the decoded data. size

2016-10-07 17:28:46
codecs.getwriter()

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

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

Codec.decode(input[, errors]) Decodes the object input and returns a tuple (output object, length consumed). For instance

2016-10-07 17:28:37
encodings.idna.ToASCII()

encodings.idna.ToASCII(label) Convert a label to ASCII, as specified in

2016-10-07 17:33:01
codecs.lookup()

codecs.lookup(encoding) Looks up the codec info in the Python codec registry and returns a CodecInfo object as

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

codecs.iterencode(iterator, encoding, errors='strict', **kwargs) Uses an incremental encoder to iteratively encode the input

2016-10-07 17:28:44