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

Method __isub__

lib/sqlalchemy/ext/mutable.py:1037–1039  ·  view source on GitHub ↗
(self, other: AbstractSet[object])

Source from the content-addressed store, hash-verified

1035 return self
1036
1037 def __isub__(self, other: AbstractSet[object]) -> MutableSet[_T]: # type: ignore[misc,unused-ignore] # noqa: E501
1038 self.difference_update(other)
1039 return self
1040
1041 def add(self, elem: _T) -> None:
1042 set.add(self, elem)

Callers

nothing calls this directly

Calls 1

difference_updateMethod · 0.95

Tested by

no test coverage detected