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

Method load_pop

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

Source from the content-addressed store, hash-verified

1708 dispatch[REDUCE[0]] = load_reduce
1709
1710 def load_pop(self):
1711 if self.stack:
1712 del self.stack[-1]
1713 else:
1714 self.pop_mark()
1715 dispatch[POP[0]] = load_pop
1716
1717 def load_pop_mark(self):

Callers

nothing calls this directly

Calls 1

pop_markMethod · 0.95

Tested by

no test coverage detected