(self)
| 3218 | self.check_note(CustomInit, "") |
| 3219 | |
| 3220 | def test_new_override(self): |
| 3221 | class CustomNew(RuntimeError): |
| 3222 | def __new__(cls): |
| 3223 | return super().__new__(cls) |
| 3224 | self.check_note(CustomNew, "") |
| 3225 | |
| 3226 | def test_instance_attribute(self): |
| 3227 | msg = "This should be noted" |
nothing calls this directly
no test coverage detected