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

Method load_put

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

Source from the content-addressed store, hash-verified

1750 dispatch[LONG_BINGET[0]] = load_long_binget
1751
1752 def load_put(self):
1753 i = int(self.readline()[:-1])
1754 if i < 0:
1755 raise ValueError("negative PUT argument")
1756 self.memo[i] = self.stack[-1]
1757 dispatch[PUT[0]] = load_put
1758
1759 def load_binput(self):

Callers

nothing calls this directly

Calls 1

readlineMethod · 0.45

Tested by

no test coverage detected