(self, other)
| 518 | return str(self.current_object) |
| 519 | |
| 520 | def __eq__(self, other): |
| 521 | if not isinstance(other, self.__class__): |
| 522 | return NotImplemented |
| 523 | return LinearViewCursor.compare(self, other) == 0 |
| 524 | |
| 525 | def __ne__(self, other): |
| 526 | if not isinstance(other, self.__class__): |