(self, other)
| 174 | return elemwise(operator.mul, other, self) |
| 175 | |
| 176 | def __sub__(self, other): |
| 177 | return elemwise(operator.sub, self, other) |
| 178 | |
| 179 | def __rsub__(self, other): |
| 180 | return elemwise(operator.sub, other, self) |
nothing calls this directly
no test coverage detected