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