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

Method __isub__

lib/sqlalchemy/util/_collections_cy.py:255–257  ·  view source on GitHub ↗
(self, other: AbstractSet[Hashable])

Source from the content-addressed store, hash-verified

253 self._list = [a for a in self._list if a in self]
254
255 def __isub__(self, other: AbstractSet[Hashable]) -> OrderedSet[_T]:
256 self.difference_update(other)
257 return self
258
259
260if cython.compiled:

Callers

nothing calls this directly

Calls 1

difference_updateMethod · 0.95

Tested by

no test coverage detected