(cls, *args, **kwargs)
| 766 | # Class with both `__init__` & `__new__` method overridden |
| 767 | class D: |
| 768 | def __new__(cls, *args, **kwargs): |
| 769 | super().__new__(cls, *args, **kwargs) |
| 770 | def __init__(self, *args, **kwargs): |
| 771 | super().__init__(*args, **kwargs) |
| 772 |
no test coverage detected