(self, prospective: Version, spec: str)
| 436 | return prospective == spec_version |
| 437 | |
| 438 | def _compare_not_equal(self, prospective: Version, spec: str) -> bool: |
| 439 | return not self._compare_equal(prospective, spec) |
| 440 | |
| 441 | def _compare_less_than_equal(self, prospective: Version, spec: str) -> bool: |
| 442 |
nothing calls this directly
no test coverage detected