(self)
| 9344 | pass |
| 9345 | |
| 9346 | def test_cannot_init(self): |
| 9347 | with self.assertRaises(TypeError): |
| 9348 | NotRequired() |
| 9349 | with self.assertRaises(TypeError): |
| 9350 | type(NotRequired)() |
| 9351 | with self.assertRaises(TypeError): |
| 9352 | type(NotRequired[Optional[int]])() |
| 9353 | |
| 9354 | def test_no_isinstance(self): |
| 9355 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected