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

Method __new__

Lib/importlib/_bootstrap.py:74–77  ·  view source on GitHub ↗
(type, ob, key)

Source from the content-addressed store, hash-verified

72 __slots__ = "key",
73
74 def __new__(type, ob, key):
75 self = super().__new__(type, ob, type.remove)
76 self.key = key
77 return self
78
79 def __init__(self, ob, key):
80 super().__init__(ob, self.remove)

Callers 1

_init_module_attrsFunction · 0.45

Calls 1

superClass · 0.85

Tested by

no test coverage detected