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