MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / load_setitems

Method load_setitems

tools/python-3.11.9-amd64/Lib/pickle.py:1694–1698  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1692 dispatch[SETITEM[0]] = load_setitem
1693
1694 def load_setitems(self):
1695 items = self.pop_mark()
1696 dict = self.stack[-1]
1697 for i in range(0, len(items), 2):
1698 dict[items[i]] = items[i + 1]
1699 dispatch[SETITEMS[0]] = load_setitems
1700
1701 def load_additems(self):

Callers

nothing calls this directly

Calls 1

pop_markMethod · 0.95

Tested by

no test coverage detected