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
struct.Struct

class struct.Struct(format) Return a new Struct object which writes and reads binary data according to the format string format

2016-10-07 17:43:30
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
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.error

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

2016-10-07 17:43:29
struct.unpack_from()

struct.unpack_from(fmt, buffer, offset=0) Unpack from buffer starting at position offset, according to the

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

struct.pack_into(fmt, buffer, offset, v1, v2, ...) Pack the values v1, v2, ... according to the format string

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

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

2016-10-07 17:28:45