MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __isub__

Method __isub__

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

Source from the content-addressed store, hash-verified

424 self._members = other._members
425
426 def __isub__(self, other: IdentitySet) -> IdentitySet:
427 if not isinstance(other, IdentitySet):
428 return NotImplemented
429 self.difference_update(other)
430 return self
431
432 @cython.ccall
433 def intersection(self, iterable: Iterable[Any], /) -> IdentitySet:

Callers

nothing calls this directly

Calls 1

difference_updateMethod · 0.95

Tested by

no test coverage detected