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

Method load_pop

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

Source from the content-addressed store, hash-verified

1739 dispatch[REDUCE[0]] = load_reduce
1740
1741 def load_pop(self):
1742 if self.stack:
1743 del self.stack[-1]
1744 else:
1745 self.pop_mark()
1746 dispatch[POP[0]] = load_pop
1747
1748 def load_pop_mark(self):

Callers

nothing calls this directly

Calls 1

pop_markMethod · 0.95

Tested by

no test coverage detected