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

Method load_get

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

Source from the content-addressed store, hash-verified

1754 dispatch[DUP[0]] = load_dup
1755
1756 def load_get(self):
1757 i = int(self.readline()[:-1])
1758 try:
1759 self.append(self.memo[i])
1760 except KeyError:
1761 msg = f'Memo value not found at index {i}'
1762 raise UnpicklingError(msg) from None
1763 dispatch[GET[0]] = load_get
1764
1765 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