(cls, name)
| 551 | |
| 552 | @classmethod |
| 553 | def factory(cls, name): |
| 554 | def inner(*args, **kwargs): |
| 555 | return cls(name, *args, **kwargs) |
| 556 | return inner |
| 557 | |
| 558 | def _repr_pretty_(self, p, cycle): |
| 559 | # dunders are to avoid clashes with kwargs, as python's name managing |
no outgoing calls
no test coverage detected