MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / difference_update

Method difference_update

lib/sqlalchemy/ext/mutable.py:1017–1019  ·  view source on GitHub ↗
(self, *arg: Iterable[Any])

Source from the content-addressed store, hash-verified

1015 self.changed()
1016
1017 def difference_update(self, *arg: Iterable[Any]) -> None:
1018 set.difference_update(self, *arg)
1019 self.changed()
1020
1021 def symmetric_difference_update(self, *arg: Iterable[_T]) -> None:
1022 set.symmetric_difference_update(self, *arg)

Callers 12

__isub__Method · 0.95
replaceMethod · 0.45
lintMethod · 0.45
_commitMethod · 0.45
_commit_all_statesMethod · 0.45
execute_aggregateMethod · 0.45
execute_aggregateMethod · 0.45
execute_aggregateMethod · 0.45
_sort_statesFunction · 0.45
_do_skipsFunction · 0.45

Calls 1

changedMethod · 0.45

Tested by

no test coverage detected