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

Method load_newobj_ex

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

Source from the content-addressed store, hash-verified

1660 dispatch[NEWOBJ[0]] = load_newobj
1661
1662 def load_newobj_ex(self):
1663 kwargs = self.stack.pop()
1664 args = self.stack.pop()
1665 cls = self.stack.pop()
1666 obj = cls.__new__(cls, *args, **kwargs)
1667 self.append(obj)
1668 dispatch[NEWOBJ_EX[0]] = load_newobj_ex
1669
1670 def load_global(self):

Callers

nothing calls this directly

Calls 3

popMethod · 0.45
__new__Method · 0.45
appendMethod · 0.45

Tested by

no test coverage detected