Return (self == other) element-wise. See Also -------- equal
(self, other)
| 604 | # return a chararray, so some extra wrapping is required. |
| 605 | |
| 606 | def __eq__(self, other): |
| 607 | """ |
| 608 | Return (self == other) element-wise. |
| 609 | |
| 610 | See Also |
| 611 | -------- |
| 612 | equal |
| 613 | """ |
| 614 | return equal(self, other) |
| 615 | |
| 616 | def __ne__(self, other): |
| 617 | """ |