(self)
| 931 | # object defines __eq__ and python sets it to None in that case: |
| 932 | # https://docs.python.org/3/reference/datamodel.html#object.__hash__ |
| 933 | def __hash__(self) -> int: ... |
| 934 | |
| 935 | def __eq__(self, other: Any) -> ColumnElement[bool]: # type: ignore[override] # noqa: E501 |
| 936 | ... |