(obj, attributes)
| 590 | _getmethods(super, methods) |
| 591 | |
| 592 | def _getattributes(obj, attributes): |
| 593 | for name in dir(obj): |
| 594 | attr = getattr(obj, name) |
| 595 | if not callable(attr): |
| 596 | attributes[name] = 1 |
| 597 | |
| 598 | |
| 599 | class MethodProxy: |
no outgoing calls
no test coverage detected
searching dependent graphs…