Return (self == other) element-wise. See Also -------- equal
(self, other)
| 2118 | # return a chararray, so some extra wrapping is required. |
| 2119 | |
| 2120 | def __eq__(self, other): |
| 2121 | """ |
| 2122 | Return (self == other) element-wise. |
| 2123 | |
| 2124 | See Also |
| 2125 | -------- |
| 2126 | equal |
| 2127 | """ |
| 2128 | return equal(self, other) |
| 2129 | |
| 2130 | def __ne__(self, other): |
| 2131 | """ |