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

Method load_frozenset

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

Source from the content-addressed store, hash-verified

1574 dispatch[EMPTY_SET[0]] = load_empty_set
1575
1576 def load_frozenset(self):
1577 items = self.pop_mark()
1578 self.append(frozenset(items))
1579 dispatch[FROZENSET[0]] = load_frozenset
1580
1581 def load_list(self):

Callers

nothing calls this directly

Calls 2

pop_markMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected