(self, other)
| 335 | def __lt__(self, other): |
| 336 | return mycmp(self.obj, other.obj) < 0 |
| 337 | def __gt__(self, other): |
| 338 | return mycmp(self.obj, other.obj) > 0 |
| 339 | def __eq__(self, other): |
| 340 | return mycmp(self.obj, other.obj) == 0 |
| 341 | def __le__(self, other): |