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