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

Method pop_mark

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

Source from the content-addressed store, hash-verified

1329
1330 # Return a list of items pushed in the stack after last MARK instruction.
1331 def pop_mark(self):
1332 items = self.stack
1333 self.stack = self.metastack.pop()
1334 self.append = self.stack.append
1335 return items
1336
1337 def persistent_load(self, pid):
1338 raise UnpicklingError("unsupported persistent id encountered")

Callers 11

load_tupleMethod · 0.95
load_frozensetMethod · 0.95
load_listMethod · 0.95
load_dictMethod · 0.95
load_instMethod · 0.95
load_objMethod · 0.95
load_popMethod · 0.95
load_pop_markMethod · 0.95
load_appendsMethod · 0.95
load_setitemsMethod · 0.95
load_additemsMethod · 0.95

Calls 1

popMethod · 0.45

Tested by

no test coverage detected