struct.error

exception struct.error Exception raised on various occasions; argument is a string describing what is wrong.

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

incrementaldecoder Incremental encoder and decoder classes or factory functions. These have to provide the interface defined

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

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

2016-10-07 17:28:37
codecs.CodecInfo.encode

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

2016-10-07 17:28:38
struct.Struct.pack_into()

pack_into(buffer, offset, v1, v2, ...) Identical to the pack_into() function, using the compiled format.

2016-10-07 17:43:30
codecs.IncrementalEncoder

class codecs.IncrementalEncoder(errors='strict') Constructor for an IncrementalEncoder instance.

2016-10-07 17:28:42
struct.Struct.unpack()

unpack(buffer) Identical to the unpack() function, using the compiled format. The buffer’s size in bytes must equal

2016-10-07 17:43:30
codecs.StreamReader

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

2016-10-07 17:28:46
struct.Struct.unpack_from()

unpack_from(buffer, offset=0) Identical to the unpack_from() function, using the compiled format. The buffer’s

2016-10-07 17:43:31
struct.Struct.iter_unpack()

iter_unpack(buffer) Identical to the iter_unpack() function, using the compiled format. The buffer’s size in bytes

2016-10-07 17:43:30