MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / difference

Method difference

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

Source from the content-addressed store, hash-verified

1909 return self.union(__s)
1910
1911 def difference(self, *s: Iterable[Any]) -> MutableSet[_T]:
1912 return set(self).difference(*s)
1913
1914 def __sub__(self, s: AbstractSet[Any]) -> MutableSet[_T]:
1915 return self.difference(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