(self, op: str)
| 368 | return self._canonical_spec == other._canonical_spec |
| 369 | |
| 370 | def _get_operator(self, op: str) -> CallableOperator: |
| 371 | operator_callable: CallableOperator = getattr( |
| 372 | self, f"_compare_{self._operators[op]}" |
| 373 | ) |
| 374 | return operator_callable |
| 375 | |
| 376 | def _compare_compatible(self, prospective: Version, spec: str) -> bool: |
| 377 |
no outgoing calls
no test coverage detected