Return (self != other) element-wise. See Also -------- not_equal
(self, other)
| 2128 | return equal(self, other) |
| 2129 | |
| 2130 | def __ne__(self, other): |
| 2131 | """ |
| 2132 | Return (self != other) element-wise. |
| 2133 | |
| 2134 | See Also |
| 2135 | -------- |
| 2136 | not_equal |
| 2137 | """ |
| 2138 | return not_equal(self, other) |
| 2139 | |
| 2140 | def __ge__(self, other): |
| 2141 | """ |
nothing calls this directly
no test coverage detected