struct.unpack()

struct.unpack(fmt, buffer) Unpack from the buffer buffer (presumably packed by pack(fmt, ...)) according

2016-10-07 17:43:31
codecs.IncrementalEncoder.encode()

encode(object[, final]) Encodes object (taking the current state of the encoder into account) and returns the resulting

2016-10-07 17:28:43
codecs.StreamWriter

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

2016-10-07 17:28:47
encodings.idna.ToUnicode()

encodings.idna.ToUnicode(label) Convert a label to Unicode, as specified in

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

reset() Reset the decoder to the initial state.

2016-10-07 17:28:42
codecs.StreamReader.read()

read([size[, chars[, firstline]]]) Decodes data from the stream and returns the resulting object. The

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

getstate() Return the current state of the decoder. This must be a tuple with two items, the first must be the buffer containing

2016-10-07 17:28:42
codecs.getincrementaldecoder()

codecs.getincrementaldecoder(encoding) Look up the codec for the given encoding and return its incremental decoder class or

2016-10-07 17:28:40
codecs.StreamWriter.writelines()

writelines(list) Writes the concatenated list of strings to the stream (possibly by reusing the write() method)

2016-10-07 17:28:48
codecs.CodecInfo

class codecs.CodecInfo(encode, decode, streamreader=None, streamwriter=None, incrementalencoder=None, incrementaldecoder=None, name=None)

2016-10-07 17:28:37