(self)
| 306 | pass |
| 307 | |
| 308 | def test_cannot_init(self): |
| 309 | with self.assertRaises(TypeError): |
| 310 | Self() |
| 311 | with self.assertRaises(TypeError): |
| 312 | type(Self)() |
| 313 | |
| 314 | def test_no_isinstance(self): |
| 315 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected