MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / difference_update

Method difference_update

lib/sqlalchemy/util/_collections_cy.py:422–424  ·  view source on GitHub ↗
(self, iterable: Iterable[Any], /)

Source from the content-addressed store, hash-verified

420 # def difference_update(self, iterable: Iterable[Any]) -> None:
421 @cython.ccall
422 def difference_update(self, iterable: Iterable[Any], /):
423 other: IdentitySet = self.difference(iterable)
424 self._members = other._members
425
426 def __isub__(self, other: IdentitySet) -> IdentitySet:
427 if not isinstance(other, IdentitySet):

Callers 1

__isub__Method · 0.95

Calls 1

differenceMethod · 0.95

Tested by

no test coverage detected