codecs.open()

codecs.open(filename, mode='r', encoding=None, errors='strict', buffering=1) Open an encoded file using the given mode

2016-10-07 17:28:45
codecs.StreamRecoder

class codecs.StreamRecoder(stream, encode, decode, Reader, Writer, errors) Creates a StreamRecoder instance which

2016-10-07 17:28:47
codecs.iterdecode()

codecs.iterdecode(iterator, encoding, errors='strict', **kwargs) Uses an incremental decoder to iteratively decode the input

2016-10-07 17:28:43
codecs.StreamWriter.reset()

reset() Flushes and resets the codec buffers used for keeping state. Calling this method should

2016-10-07 17:28:48
struct.Struct.pack()

pack(v1, v2, ...) Identical to the pack() function, using the compiled format. (len(result) will equal

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

codecs.strict_errors(exception) Implements the 'strict' error handling: each encoding or decoding error raises

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

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

2016-10-07 17:28:40
struct.calcsize()

struct.calcsize(fmt) Return the size of the struct (and hence of the bytes object produced by pack(fmt, ...)) corresponding

2016-10-07 17:43:29
struct.Struct.format

format The format string used to construct this Struct object.

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

IncrementalEncoder.getstate() Return the current state of the encoder which must be an integer. The implementation should make

2016-10-07 17:28:43