Built implicitly from Person Friend is a virtual subclass of Person since both required methods exist. Person not in Friend.__mro__
| 119 | pass |
| 120 | |
| 121 | class Friend: |
| 122 | """Built implicitly from Person |
| 123 | Friend is a virtual subclass of Person since |
| 124 | both required methods exist. |
| 125 | Person not in Friend.__mro__ |
| 126 | """ |
| 127 | def name(self): |
| 128 | pass |
| 129 | |
| 130 | def age(self): |
| 131 | pass |
| 132 | |
| 133 | print(issubclass(Employee, PersonSuper)) |
| 134 | print(issubclass(Friend, PersonSuper)) |
nothing calls this directly
no outgoing calls
no test coverage detected