The public constructor.
(cls, parent, *, name, obj=None, **kw)
| 748 | |
| 749 | @classmethod |
| 750 | def from_parent(cls, parent, *, name, obj=None, **kw) -> Self: # type: ignore[override] |
| 751 | """The public constructor.""" |
| 752 | return super().from_parent(name=name, parent=parent, **kw) |
| 753 | |
| 754 | def newinstance(self): |
| 755 | return self.obj() |
no outgoing calls
no test coverage detected