(self, other)
| 304 | return s < o |
| 305 | |
| 306 | def __le__(self, other): |
| 307 | s, o = self.make_comparable(other) |
| 308 | if o is NotImplemented: |
| 309 | return NotImplemented |
| 310 | return s <= o |
| 311 | |
| 312 | def __gt__(self, other): |
| 313 | s, o = self.make_comparable(other) |
nothing calls this directly
no test coverage detected