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

Method load_get

Lib/pickle.py:1725–1731  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1723 dispatch[DUP[0]] = load_dup
1724
1725 def load_get(self):
1726 i = int(self.readline()[:-1])
1727 try:
1728 self.append(self.memo[i])
1729 except KeyError:
1730 msg = f'Memo value not found at index {i}'
1731 raise UnpicklingError(msg) from None
1732 dispatch[GET[0]] = load_get
1733
1734 def load_binget(self):

Callers

nothing calls this directly

Calls 3

UnpicklingErrorClass · 0.85
readlineMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected