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

Function _load

Lib/pickle.py:1879–1882  ·  view source on GitHub ↗
(file, *, fix_imports=True, encoding="ASCII", errors="strict",
          buffers=None)

Source from the content-addressed store, hash-verified

1877 return res
1878
1879def _load(file, *, fix_imports=True, encoding="ASCII", errors="strict",
1880 buffers=None):
1881 return _Unpickler(file, fix_imports=fix_imports, buffers=buffers,
1882 encoding=encoding, errors=errors).load()
1883
1884def _loads(s, /, *, fix_imports=True, encoding="ASCII", errors="strict",
1885 buffers=None):

Callers

nothing calls this directly

Calls 2

_UnpicklerClass · 0.85
loadMethod · 0.45

Tested by

no test coverage detected