(self)
| 408 | self.assertNotEqual((*tuple[int],)[0], tuple[int]) |
| 409 | |
| 410 | def test_isinstance(self): |
| 411 | self.assertTrue(isinstance([], list)) |
| 412 | with self.assertRaises(TypeError): |
| 413 | isinstance([], list[str]) |
| 414 | |
| 415 | def test_issubclass(self): |
| 416 | class L(list): ... |
nothing calls this directly
no test coverage detected