blob: 0cfac77731c52d642b5c972330c9447a251ff65a (
plain)
1
2
3
4
5
6
7
8
9
10
|
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]: ...
|