Files
2025-12-02 14:32:10 +00:00

11 lines
387 B
Python

from typing import Tuple, Any
class Comparable:
def __eq__(self, other: Any) -> bool: ...
def __ne__(self, other: Any) -> bool: ...
def __lt__(self, other: Any) -> bool: ...
def __le__(self, other: Any) -> bool: ...
def __gt__(self, other: Any) -> bool: ...
def __ge__(self, other: Any) -> bool: ...
def _cmp_values(self, other: Any) -> Tuple[str, str]: ...