Information about a Python class.
| 76 | |
| 77 | |
| 78 | class Class(_Object): |
| 79 | "Information about a Python class." |
| 80 | def __init__(self, module, name, super_, file, lineno, |
| 81 | parent=None, *, end_lineno=None): |
| 82 | super().__init__(module, name, file, lineno, end_lineno, parent) |
| 83 | self.super = super_ or [] |
| 84 | self.methods = {} |
| 85 | |
| 86 | |
| 87 | # These 2 functions are used in these tests |
no outgoing calls
no test coverage detected
searching dependent graphs…