struct.pack()

struct.pack(fmt, v1, v2, ...) Return a bytes object containing the values v1, v2, ... packed according to

2016-10-07 17:43:29
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.StreamReader.reset()

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

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

codecs.lookup_error(name) Return the error handler previously registered under the name name. Raises

2016-10-07 17:28:44
struct.Struct.size

size The calculated size of the struct (and hence of the bytes object produced by the pack() method) corresponding

2016-10-07 17:43:30
codecs.register()

codecs.register(search_function) Register a codec search function. Search functions are expected to take one argument, being

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

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

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

codecs.encode(obj, encoding='utf-8', errors='strict') Encodes obj using the codec registered for encoding

2016-10-07 17:28:39
codecs.EncodedFile()

codecs.EncodedFile(file, data_encoding, file_encoding=None, errors='strict') Return a StreamRecoder instance, a

2016-10-07 17:28:39