(self, other)
| 189 | return elemwise(operator.truediv, self, other) |
| 190 | |
| 191 | def __rtruediv__(self, other): |
| 192 | return elemwise(operator.truediv, other, self) |
| 193 | |
| 194 | def __floordiv__(self, other): |
| 195 | return elemwise(operator.floordiv, self, other) |
nothing calls this directly
no test coverage detected