MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __ge__

Method __ge__

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

Source from the content-addressed store, hash-verified

363 return self._members.keys() >= other._members.keys()
364
365 def __ge__(self, other: Any) -> bool:
366 if not isinstance(other, IdentitySet):
367 return NotImplemented
368 return self.issuperset(other)
369
370 def __gt__(self, other: Any) -> bool:
371 if not isinstance(other, IdentitySet):

Callers

nothing calls this directly

Calls 1

issupersetMethod · 0.95

Tested by

no test coverage detected