(self, other)
| 2351 | |
| 2352 | @check_if_handled_given_other |
| 2353 | def __add__(self, other): |
| 2354 | return elemwise(operator.add, self, other) |
| 2355 | |
| 2356 | @check_if_handled_given_other |
| 2357 | def __radd__(self, other): |
nothing calls this directly
no test coverage detected