MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __gt__

Method __gt__

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

Source from the content-addressed store, hash-verified

233 return self._op(other, operator.ge)
234
235 def __gt__(self, other: Any) -> bool:
236 return self._op(other, operator.gt)
237
238 def __eq__(self, other: Any) -> bool:
239 return self._op(other, operator.eq)

Callers

nothing calls this directly

Calls 1

_opMethod · 0.95

Tested by

no test coverage detected