(self, other: Any)
| 221 | def __getitem__(self, index: Union[int, slice]) -> Any: ... |
| 222 | |
| 223 | def __lt__(self, other: Any) -> bool: |
| 224 | return self._op(other, operator.lt) |
| 225 | |
| 226 | def __le__(self, other: Any) -> bool: |
| 227 | return self._op(other, operator.le) |