(self)
| 220 | class ClassWithFinal(with_metaclass(FinalMeta, object)): |
| 221 | @final |
| 222 | def f(self): |
| 223 | return 'ClassWithFinal: f' |
| 224 | |
| 225 | class SubClass(ClassWithFinal): |
| 226 | def __init__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected