(self, other)
| 316 | return s > o |
| 317 | |
| 318 | def __ge__(self, other): |
| 319 | s, o = self.make_comparable(other) |
| 320 | if o is NotImplemented: |
| 321 | return NotImplemented |
| 322 | return s >= o |
| 323 | |
| 324 | def __eq__(self, other): |
| 325 | s, o = self.make_comparable(other) |
nothing calls this directly
no test coverage detected