(self)
| 5900 | pass |
| 5901 | |
| 5902 | def test_cannot_init(self): |
| 5903 | with self.assertRaises(TypeError): |
| 5904 | ClassVar() |
| 5905 | with self.assertRaises(TypeError): |
| 5906 | type(ClassVar)() |
| 5907 | with self.assertRaises(TypeError): |
| 5908 | type(ClassVar[Optional[int]])() |
| 5909 | |
| 5910 | def test_no_isinstance(self): |
| 5911 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected