The public constructor.
(cls, parent, *, name, obj=None, **kw)
| 784 | |
| 785 | @classmethod |
| 786 | def from_parent(cls, parent, *, name, obj=None, **kw): |
| 787 | """The public constructor.""" |
| 788 | return super().from_parent(name=name, parent=parent, **kw) |
| 789 | |
| 790 | def newinstance(self): |
| 791 | return self.obj() |
no outgoing calls
no test coverage detected