struct.Struct.format
  • References/Python/Python/Binary Data

format The format string used to construct this Struct object.

2025-01-10 15:47:30
codecs.StreamWriter.reset()
  • References/Python/Python/Binary Data

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

2025-01-10 15:47:30
codecs.IncrementalEncoder.getstate()
  • References/Python/Python/Binary Data

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

2025-01-10 15:47:30
codecs.register_error()
  • References/Python/Python/Binary Data

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

2025-01-10 15:47:30
struct.iter_unpack()
  • References/Python/Python/Binary Data

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

2025-01-10 15:47:30
codecs.IncrementalEncoder.encode()
  • References/Python/Python/Binary Data

encode(object[, final]) Encodes object (taking the current state of the encoder into account) and returns the resulting

2025-01-10 15:47:30
codecs.StreamReader.readlines()
  • References/Python/Python/Binary Data

readlines([sizehint[, keepends]]) Read all lines available on the input stream and return them as a list of lines.

2025-01-10 15:47:30
codecs.getwriter()
  • References/Python/Python/Binary Data

codecs.getwriter(encoding) Look up the codec for the given encoding and return its StreamWriter class or factory

2025-01-10 15:47:30
codecs.StreamReader.read()
  • References/Python/Python/Binary Data

read([size[, chars[, firstline]]]) Decodes data from the stream and returns the resulting object. The

2025-01-10 15:47:30
encodings.idna.ToASCII()
  • References/Python/Python/Binary Data

encodings.idna.ToASCII(label) Convert a label to ASCII, as specified in

2025-01-10 15:47:30