(self, other)
| 548 | return LinearViewCursor.compare(self, other) >= 0 |
| 549 | |
| 550 | def __cmp__(self, other): |
| 551 | if not isinstance(other, self.__class__): |
| 552 | return NotImplemented |
| 553 | return LinearViewCursor.compare(self, other) |
| 554 | |
| 555 | @property |
| 556 | def before_begin(self): |