(self, other)
| 543 | return LinearViewCursor.compare(self, other) > 0 |
| 544 | |
| 545 | def __ge__(self, other): |
| 546 | if not isinstance(other, self.__class__): |
| 547 | return NotImplemented |
| 548 | return LinearViewCursor.compare(self, other) >= 0 |
| 549 | |
| 550 | def __cmp__(self, other): |
| 551 | if not isinstance(other, self.__class__): |