💾 Archived View for tris.fyi › pydoc › _pickle captured on 2023-04-26 at 13:34:05. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-01-08)

-=-=-=-=-=-=-

Back to module index

Go to module by name

_pickle

Optimized C implementation for the Python pickle module.

Classes

PickleBuffer

Wrapper for potentially out-of-band buffers
raw(self, /)

  Return a memoryview of the raw memory underlying this buffer.
  Will raise BufferError is the buffer isn't contiguous.
release(self, /)

  Release the underlying buffer exposed by the PickleBuffer object.

PickleError

with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>

Pickler

This takes a binary file for writing a pickle data stream.

The optional *protocol* argument tells the pickler to use the given
protocol; supported protocols are 0, 1, 2, 3, 4 and 5.  The default
protocol is 4. It was introduced in Python 3.4, and is incompatible
with previous versions.

Specifying a negative protocol version selects the highest protocol
version supported.  The higher the protocol used, the more recent the
version of Python needed to read the pickle produced.

The *file* argument must have a write() method that accepts a single
bytes argument. It can thus be a file object opened for binary
writing, an io.BytesIO instance, or any other custom object that meets
this interface.

If *fix_imports* is True and protocol is less than 3, pickle will try
to map the new Python 3 names to the old module names used in Python
2, so that the pickle data stream is readable with Python 2.

If *buffer_callback* is None (the default), buffer views are
serialized into *file* as part of the pickle stream.

If *buffer_callback* is not None, then it can be called any number
of times with a buffer view.  If the callback returns a false value
(such as None), the given buffer is out-of-band; otherwise the
buffer is serialized in-band, i.e. inside the pickle stream.

It is an error if *buffer_callback* is not None and *protocol*
is None or smaller than 5.
clear_memo(self, /)

  Clears the pickler's "memo".

  The memo is the data structure that remembers which objects the
  pickler has already seen, so that shared or recursive objects are
  pickled by reference and not by value.  This method is useful when
  re-using picklers.
dump(self, obj, /)

  Write a pickled representation of the given object to the open file.
bin = <member 'bin' of '_pickle.Pickler' objects>
dispatch_table = <member 'dispatch_table' of '_pickle.Pickler' objects>
fast = <member 'fast' of '_pickle.Pickler' objects>
memo = <attribute 'memo' of '_pickle.Pickler' objects>
persistent_id = <attribute 'persistent_id' of '_pickle.Pickler' objects>

PicklingError

with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>

Unpickler

This takes a binary file for reading a pickle data stream.

The protocol version of the pickle is detected automatically, so no
protocol argument is needed.  Bytes past the pickled object's
representation are ignored.

The argument *file* must have two methods, a read() method that takes
an integer argument, and a readline() method that requires no
arguments.  Both methods should return bytes.  Thus *file* can be a
binary file object opened for reading, an io.BytesIO object, or any
other custom object that meets this interface.

Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
which are used to control compatibility support for pickle stream
generated by Python 2.  If *fix_imports* is True, pickle will try to
map the old Python 2 names to the new names used in Python 3.  The

instances pickled by Python 2; these default to 'ASCII' and 'strict',
respectively.  The *encoding* can be 'bytes' to read these 8-bit
string instances as bytes objects.
find_class(self, module_name, global_name, /)

  Return an object from a specified module.

  If necessary, the module will be imported. Subclasses may override
  this method (e.g. to restrict unpickling of arbitrary classes and
  functions).

  This method is called whenever a class or a function object is
  needed.  Both arguments passed are str objects.
load(self, /)

  Load a pickle.

  Read a pickled object representation from the open file object given
  in the constructor, and return the reconstituted object hierarchy
  specified therein.
memo = <attribute 'memo' of '_pickle.Unpickler' objects>
persistent_load = <attribute 'persistent_load' of '_pickle.Unpickler' objects>

UnpicklingError

with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>

Functions

dump

dump(obj, file, protocol=None, *, fix_imports=True, buffer_callback=None)

  Write a pickled representation of obj to the open file object file.

  This is equivalent to ``Pickler(file, protocol).dump(obj)``, but may
  be more efficient.

  The optional *protocol* argument tells the pickler to use the given
  protocol; supported protocols are 0, 1, 2, 3, 4 and 5.  The default
  protocol is 4. It was introduced in Python 3.4, and is incompatible
  with previous versions.

  Specifying a negative protocol version selects the highest protocol
  version supported.  The higher the protocol used, the more recent the
  version of Python needed to read the pickle produced.

  The *file* argument must have a write() method that accepts a single
  bytes argument.  It can thus be a file object opened for binary
  writing, an io.BytesIO instance, or any other custom object that meets
  this interface.

  If *fix_imports* is True and protocol is less than 3, pickle will try
  to map the new Python 3 names to the old module names used in Python
  2, so that the pickle data stream is readable with Python 2.

  If *buffer_callback* is None (the default), buffer views are serialized
  into *file* as part of the pickle stream.  It is an error if
  *buffer_callback* is not None and *protocol* is None or smaller than 5.

dumps

dumps(obj, protocol=None, *, fix_imports=True, buffer_callback=None)

  Return the pickled representation of the object as a bytes object.

  The optional *protocol* argument tells the pickler to use the given
  protocol; supported protocols are 0, 1, 2, 3, 4 and 5.  The default
  protocol is 4. It was introduced in Python 3.4, and is incompatible
  with previous versions.

  Specifying a negative protocol version selects the highest protocol
  version supported.  The higher the protocol used, the more recent the
  version of Python needed to read the pickle produced.

  If *fix_imports* is True and *protocol* is less than 3, pickle will
  try to map the new Python 3 names to the old module names used in
  Python 2, so that the pickle data stream is readable with Python 2.

  If *buffer_callback* is None (the default), buffer views are serialized
  into *file* as part of the pickle stream.  It is an error if
  *buffer_callback* is not None and *protocol* is None or smaller than 5.

load

load(file, *, fix_imports=True, encoding='ASCII', errors='strict', buffers=())

  Read and return an object from the pickle data stored in a file.

  This is equivalent to ``Unpickler(file).load()``, but may be more
  efficient.

  The protocol version of the pickle is detected automatically, so no
  protocol argument is needed.  Bytes past the pickled object's
  representation are ignored.

  The argument *file* must have two methods, a read() method that takes
  an integer argument, and a readline() method that requires no
  arguments.  Both methods should return bytes.  Thus *file* can be a
  binary file object opened for reading, an io.BytesIO object, or any
  other custom object that meets this interface.

  Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
  which are used to control compatibility support for pickle stream
  generated by Python 2.  If *fix_imports* is True, pickle will try to
  map the old Python 2 names to the new names used in Python 3.  The
  *encoding* and *errors* tell pickle how to decode 8-bit string
  instances pickled by Python 2; these default to 'ASCII' and 'strict',
  respectively.  The *encoding* can be 'bytes' to read these 8-bit
  string instances as bytes objects.

loads

loads(data, /, *, fix_imports=True, encoding='ASCII', errors='strict', buffers=())

  Read and return an object from the given pickle data.

  The protocol version of the pickle is detected automatically, so no
  protocol argument is needed.  Bytes past the pickled object's
  representation are ignored.

  Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
  which are used to control compatibility support for pickle stream
  generated by Python 2.  If *fix_imports* is True, pickle will try to
  map the old Python 2 names to the new names used in Python 3.  The
  *encoding* and *errors* tell pickle how to decode 8-bit string
  instances pickled by Python 2; these default to 'ASCII' and 'strict',
  respectively.  The *encoding* can be 'bytes' to read these 8-bit
  string instances as bytes objects.