MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / difference

Method difference

lib/sqlalchemy/ext/associationproxy.py:1950–1951  ·  view source on GitHub ↗
(self, *s: Iterable[Any])

Source from the content-addressed store, hash-verified

1948 return self.union(__s)
1949
1950 def difference(self, *s: Iterable[Any]) -> MutableSet[_T]:
1951 return set(self).difference(*s)
1952
1953 def __sub__(self, s: AbstractSet[Any]) -> MutableSet[_T]:
1954 if not collections._set_binops_check_strict(self, s):

Callers 10

__sub__Method · 0.95
update_query_pairsMethod · 0.45
_reflect_fkMethod · 0.45
_bulk_replaceMethod · 0.45
_bulk_replaceMethod · 0.45
prepareMethod · 0.45
_check_conflictsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected