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

Method load_frozenset

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

Source from the content-addressed store, hash-verified

1605 dispatch[EMPTY_SET[0]] = load_empty_set
1606
1607 def load_frozenset(self):
1608 items = self.pop_mark()
1609 self.append(frozenset(items))
1610 dispatch[FROZENSET[0]] = load_frozenset
1611
1612 def load_list(self):

Callers

nothing calls this directly

Calls 2

pop_markMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected