Divide other into self, and return a new masked array.
(self, other)
| 4257 | return multiply(other, self) |
| 4258 | |
| 4259 | def __div__(self, other): |
| 4260 | """ |
| 4261 | Divide other into self, and return a new masked array. |
| 4262 | |
| 4263 | """ |
| 4264 | if self._delegate_binop(other): |
| 4265 | return NotImplemented |
| 4266 | return divide(self, other) |
| 4267 | |
| 4268 | def __truediv__(self, other): |
| 4269 | """ |
nothing calls this directly
no test coverage detected