MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / __le__

Method __le__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_opMethod · 0.95

Tested by

no test coverage detected