Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ __le__
Method
__le__
lib/sqlalchemy/engine/row.py:229–230 ·
view source on GitHub ↗
(self, other: Any)
Source
from the content-addressed store, hash-verified
227
return
self._op(other, operator.lt)
228
229
def
__le__(self, other: Any) -> bool:
230
return
self._op(other, operator.le)
231
232
def
__ge__(self, other: Any) -> bool:
233
return
self._op(other, operator.ge)
Callers
nothing calls this directly
Calls
1
_op
Method · 0.95
Tested by
no test coverage detected