MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __le__

Method __le__

lib/sqlalchemy/util/_collections_cy.py:345–348  ·  view source on GitHub ↗
(self, other: Any)

Source from the content-addressed store, hash-verified

343 return self._members.keys() <= other._members.keys()
344
345 def __le__(self, other: Any) -> bool:
346 if not isinstance(other, IdentitySet):
347 return NotImplemented
348 return self.issubset(other)
349
350 def __lt__(self, other: Any) -> bool:
351 if not isinstance(other, IdentitySet):

Callers

nothing calls this directly

Calls 1

issubsetMethod · 0.95

Tested by

no test coverage detected