| 3 | from myextension import Base |
| 4 | |
| 5 | class PythonDerivedOne(Base): |
| 6 | def __init__(self): |
| 7 | Base.__init__(self, "PythonDerivedOne") |
| 8 | |
| 9 | class PythonDerivedTwo(Base): |
| 10 | def __init__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected