(self, other)
| 124 | return self |
| 125 | |
| 126 | def __lshift__(self, other): |
| 127 | return self._rc(left_shift(self.array, other)) |
| 128 | |
| 129 | def __rshift__(self, other): |
| 130 | return self._rc(right_shift(self.array, other)) |
nothing calls this directly
no test coverage detected