(self, other)
| 171 | return elemwise(operator.mul, self, other) |
| 172 | |
| 173 | def __rmul__(self, other): |
| 174 | return elemwise(operator.mul, other, self) |
| 175 | |
| 176 | def __sub__(self, other): |
| 177 | return elemwise(operator.sub, self, other) |
nothing calls this directly
no test coverage detected