MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __ixor__

Method __ixor__

lib/sqlalchemy/ext/mutable.py:1033–1035  ·  view source on GitHub ↗
(self, other: AbstractSet[_T])

Source from the content-addressed store, hash-verified

1031 return self
1032
1033 def __ixor__(self, other: AbstractSet[_T]) -> MutableSet[_T]: # type: ignore[override,misc] # noqa: E501
1034 self.symmetric_difference_update(other)
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)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected