(self)
| 9462 | pass |
| 9463 | |
| 9464 | def test_cannot_init(self): |
| 9465 | with self.assertRaises(TypeError): |
| 9466 | NotRequired() |
| 9467 | with self.assertRaises(TypeError): |
| 9468 | type(NotRequired)() |
| 9469 | with self.assertRaises(TypeError): |
| 9470 | type(NotRequired[Optional[int]])() |
| 9471 | |
| 9472 | def test_no_isinstance(self): |
| 9473 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected