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

codecs.register_error(name, error_handler) Register the error handling function error_handler under the name name

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

codecs.namereplace_errors(exception) Implements the 'namereplace' error handling (for encoding with

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

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

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

readline([size[, keepends]]) Read one line from the input stream and return the decoded data. size

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

struct.iter_unpack(fmt, buffer) Iteratively unpack from the buffer buffer according to the format string fmt

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