Subtract other from self, and return a new masked array.
(self, other)
| 4226 | return add(other, self) |
| 4227 | |
| 4228 | def __sub__(self, other): |
| 4229 | """ |
| 4230 | Subtract other from self, and return a new masked array. |
| 4231 | |
| 4232 | """ |
| 4233 | if self._delegate_binop(other): |
| 4234 | return NotImplemented |
| 4235 | return subtract(self, other) |
| 4236 | |
| 4237 | def __rsub__(self, other): |
| 4238 | """ |
nothing calls this directly
no test coverage detected