(cls, other)
| 3906 | class C(P): |
| 3907 | @classmethod |
| 3908 | def __subclasshook__(cls, other): |
| 3909 | return other.__name__.startswith("OK") |
| 3910 | |
| 3911 | self.assertIsInstance(OKClass(), C) |
| 3912 | self.assertNotIsInstance(BadClass(), C) |
nothing calls this directly
no test coverage detected