(self)
| 413 | isinstance([], list[str]) |
| 414 | |
| 415 | def test_issubclass(self): |
| 416 | class L(list): ... |
| 417 | self.assertIsSubclass(L, list) |
| 418 | with self.assertRaises(TypeError): |
| 419 | issubclass(L, list[str]) |
| 420 | |
| 421 | def test_type_generic(self): |
| 422 | t = type[int] |
nothing calls this directly
no test coverage detected