MCPcopy
hub / github.com/cloudpipe/cloudpickle / dump

Method dump

cloudpickle/cloudpickle.py:1311–1316  ·  view source on GitHub ↗
(self, obj)

Source from the content-addressed store, hash-verified

1309 return code, base_globals, None, None, closure
1310
1311 def dump(self, obj):
1312 try:
1313 return super().dump(obj)
1314 except RecursionError as e:
1315 msg = "Could not pickle object as excessively deep recursion required."
1316 raise pickle.PicklingError(msg) from e
1317
1318 def __init__(self, file, protocol=None, buffer_callback=None):
1319 if protocol is None:

Callers 6

dumpsFunction · 0.95
dumpFunction · 0.80
test_load_namespaceMethod · 0.80
dump_objFunction · 0.80

Calls

no outgoing calls