(self, other)
| 2345 | |
| 2346 | @check_if_handled_given_other |
| 2347 | def __add__(self, other): |
| 2348 | return elemwise(operator.add, self, other) |
| 2349 | |
| 2350 | @check_if_handled_given_other |
| 2351 | def __radd__(self, other): |
nothing calls this directly
no test coverage detected