(self)
| 889 | # object defines __eq__ and python sets it to None in that case: |
| 890 | # https://docs.python.org/3/reference/datamodel.html#object.__hash__ |
| 891 | def __hash__(self) -> int: ... |
| 892 | |
| 893 | def __eq__(self, other: Any) -> ColumnElement[bool]: # type: ignore[override] # noqa: E501 |
| 894 | ... |