Divide other into self, and return a new masked array.
(self, other)
| 4266 | return divide(self, other) |
| 4267 | |
| 4268 | def __truediv__(self, other): |
| 4269 | """ |
| 4270 | Divide other into self, and return a new masked array. |
| 4271 | |
| 4272 | """ |
| 4273 | if self._delegate_binop(other): |
| 4274 | return NotImplemented |
| 4275 | return true_divide(self, other) |
| 4276 | |
| 4277 | def __rtruediv__(self, other): |
| 4278 | """ |