(self, other)
| 109 | ) |
| 110 | |
| 111 | def __eq__(self, other): |
| 112 | if self.ascending() == other.ascending(): |
| 113 | if self.descending() == other.descending(): |
| 114 | return True |
| 115 | return False |
| 116 | |
| 117 | def __ne__(self, other): |
| 118 | return not self.__eq__(other) |
no test coverage detected