Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ __eq__
Method
__eq__
lib/sqlalchemy/engine/row.py:238–239 ·
view source on GitHub ↗
(self, other: Any)
Source
from the content-addressed store, hash-verified
236
return
self._op(other, operator.gt)
237
238
def
__eq__(self, other: Any) -> bool:
239
return
self._op(other, operator.eq)
240
241
def
__ne__(self, other: Any) -> bool:
242
return
self._op(other, operator.ne)
Callers
nothing calls this directly
Calls
1
_op
Method · 0.95
Tested by
no test coverage detected