(self, other)
| 154 | return self |
| 155 | |
| 156 | def __xor__(self, other): |
| 157 | return self._rc(bitwise_xor(self.array, other)) |
| 158 | |
| 159 | def __rxor__(self, other): |
| 160 | return self._rc(bitwise_xor(other, self.array)) |
nothing calls this directly
no test coverage detected