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

Method __ixor__

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

Source from the content-addressed store, hash-verified

1035 return self
1036
1037 def __ixor__(self, other: AbstractSet[_T]) -> MutableSet[_T]: # type: ignore[override,misc] # noqa: E501
1038 self.symmetric_difference_update(other)
1039 return self
1040
1041 def __isub__(self, other: AbstractSet[object]) -> MutableSet[_T]: # type: ignore[misc,unused-ignore] # noqa: E501
1042 self.difference_update(other)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected