(self, other)
| 339 | def __eq__(self, other): |
| 340 | return mycmp(self.obj, other.obj) == 0 |
| 341 | def __le__(self, other): |
| 342 | return mycmp(self.obj, other.obj) <= 0 |
| 343 | def __ge__(self, other): |
| 344 | return mycmp(self.obj, other.obj) >= 0 |
| 345 | def __ne__(self, other): |