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

Method load_setitems

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

Source from the content-addressed store, hash-verified

1840 dispatch[SETITEM[0]] = load_setitem
1841
1842 def load_setitems(self):
1843 items = self.pop_mark()
1844 dict = self.stack[-1]
1845 for i in range(0, len(items), 2):
1846 dict[items[i]] = items[i + 1]
1847 dispatch[SETITEMS[0]] = load_setitems
1848
1849 def load_additems(self):

Callers

nothing calls this directly

Calls 1

pop_markMethod · 0.95

Tested by

no test coverage detected