Return (self != other) element-wise. See Also -------- not_equal
(self, other)
| 614 | return equal(self, other) |
| 615 | |
| 616 | def __ne__(self, other): |
| 617 | """ |
| 618 | Return (self != other) element-wise. |
| 619 | |
| 620 | See Also |
| 621 | -------- |
| 622 | not_equal |
| 623 | """ |
| 624 | return not_equal(self, other) |
| 625 | |
| 626 | def __ge__(self, other): |
| 627 | """ |
nothing calls this directly
no test coverage detected