(self, other: Any)
| 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): |
nothing calls this directly
no test coverage detected