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

Method load_newobj

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

Source from the content-addressed store, hash-verified

1653 dispatch[OBJ[0]] = load_obj
1654
1655 def load_newobj(self):
1656 args = self.stack.pop()
1657 cls = self.stack.pop()
1658 obj = cls.__new__(cls, *args)
1659 self.append(obj)
1660 dispatch[NEWOBJ[0]] = load_newobj
1661
1662 def load_newobj_ex(self):

Callers

nothing calls this directly

Calls 3

popMethod · 0.45
__new__Method · 0.45
appendMethod · 0.45

Tested by

no test coverage detected