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

Method load_list

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

Source from the content-addressed store, hash-verified

1579 dispatch[FROZENSET[0]] = load_frozenset
1580
1581 def load_list(self):
1582 items = self.pop_mark()
1583 self.append(items)
1584 dispatch[LIST[0]] = load_list
1585
1586 def load_dict(self):

Callers

nothing calls this directly

Calls 2

pop_markMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected