MCPcopy Index your code
hub / github.com/python/cpython / _load

Function _load

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

Source from the content-addressed store, hash-verified

1908 return res
1909
1910def _load(file, *, fix_imports=True, encoding="ASCII", errors="strict",
1911 buffers=None):
1912 return _Unpickler(file, fix_imports=fix_imports, buffers=buffers,
1913 encoding=encoding, errors=errors).load()
1914
1915def _loads(s, /, *, fix_imports=True, encoding="ASCII", errors="strict",
1916 buffers=None):

Callers

nothing calls this directly

Calls 2

_UnpicklerClass · 0.85
loadMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…