MCPcopy Index your code
hub / github.com/python/cpython / symmetric_difference_update

Method symmetric_difference_update

Lib/_weakrefset.py:128–129  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

126 __xor__ = symmetric_difference
127
128 def symmetric_difference_update(self, other):
129 self.__ixor__(other)
130 def __ixor__(self, other):
131 if self is other:
132 self.data.clear()

Calls 1

__ixor__Method · 0.95