MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __lt__

Method __lt__

lib/sqlalchemy/engine/row.py:226–227  ·  view source on GitHub ↗
(self, other: Any)

Source from the content-addressed store, hash-verified

224 __hash__ = BaseRow.__hash__
225
226 def __lt__(self, other: Any) -> bool:
227 return self._op(other, operator.lt)
228
229 def __le__(self, other: Any) -> bool:
230 return self._op(other, operator.le)

Callers

nothing calls this directly

Calls 1

_opMethod · 0.95

Tested by

no test coverage detected