(cls)
| 238 | @final |
| 239 | @classmethod |
| 240 | def f(cls): |
| 241 | cls.count += 1 |
| 242 | return cls.count |
| 243 | |
| 244 | with self.assertRaises(TypeError): |
| 245 | class ClassOverridingClassMethod(ClassWithClassMethod): |
nothing calls this directly
no outgoing calls
no test coverage detected