(self, *args, **kwargs)
| 768 | def __new__(cls, *args, **kwargs): |
| 769 | super().__new__(cls, *args, **kwargs) |
| 770 | def __init__(self, *args, **kwargs): |
| 771 | super().__init__(*args, **kwargs) |
| 772 | |
| 773 | error_msg = r'object.__new__\(\) takes exactly one argument \(the type to instantiate\)' |
| 774 |