MCPcopy Index your code
hub / github.com/RustPython/RustPython / PicklingError

Class PicklingError

Lib/pickle.py:76–81  ·  view source on GitHub ↗

This exception is raised when an unpicklable object is passed to the dump() method.

Source from the content-addressed store, hash-verified

74 pass
75
76class PicklingError(PickleError):
77 """This exception is raised when an unpicklable object is passed to the
78 dump() method.
79
80 """
81 pass
82
83class UnpicklingError(PickleError):
84 """This exception is raised when there is a problem unpickling an object,

Callers 8

__reduce__Method · 0.90
whichmoduleFunction · 0.85
dumpMethod · 0.85
saveMethod · 0.85
save_persMethod · 0.85
save_reduceMethod · 0.85
save_picklebufferMethod · 0.85

Calls

no outgoing calls

Tested by 1

__reduce__Method · 0.72