| 44 | |
| 45 | |
| 46 | class _MethodInfo: |
| 47 | def __init__(self, is_static: bool, type: CallableType) -> None: |
| 48 | self.is_static: Final = is_static |
| 49 | self.type: Final = type |
| 50 | |
| 51 | |
| 52 | def functools_total_ordering_maker_callback( |
no outgoing calls
no test coverage detected
searching dependent graphs…