MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __sub__

Method __sub__

lib/sqlalchemy/util/_collections_cy.py:415–418  ·  view source on GitHub ↗
(self, other: IdentitySet)

Source from the content-addressed store, hash-verified

413 return result
414
415 def __sub__(self, other: IdentitySet) -> IdentitySet:
416 if not isinstance(other, IdentitySet):
417 return NotImplemented
418 return self.difference(other)
419
420 # def difference_update(self, iterable: Iterable[Any]) -> None:
421 @cython.ccall

Callers

nothing calls this directly

Calls 1

differenceMethod · 0.95

Tested by

no test coverage detected