MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / load_newobj

Method load_newobj

tools/python-3.11.9-amd64/Lib/pickle.py:1511–1515  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1509 dispatch[OBJ[0]] = load_obj
1510
1511 def load_newobj(self):
1512 args = self.stack.pop()
1513 cls = self.stack.pop()
1514 obj = cls.__new__(cls, *args)
1515 self.append(obj)
1516 dispatch[NEWOBJ[0]] = load_newobj
1517
1518 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