MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / symmetric_difference_update

Method symmetric_difference_update

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

Source from the content-addressed store, hash-verified

1019 self.changed()
1020
1021 def symmetric_difference_update(self, *arg: Iterable[_T]) -> None:
1022 set.symmetric_difference_update(self, *arg)
1023 self.changed()
1024
1025 def __ior__(self, other: AbstractSet[_T]) -> MutableSet[_T]: # type: ignore[override,misc] # noqa: E501
1026 self.update(other)

Callers 5

__ixor__Method · 0.95
symmetric_diff_upMethod · 0.45
test_set_opsMethod · 0.45
_test_setMethod · 0.45

Calls 1

changedMethod · 0.45

Tested by 3

test_set_opsMethod · 0.36
_test_setMethod · 0.36