(self, other)
| 310 | return s <= o |
| 311 | |
| 312 | def __gt__(self, other): |
| 313 | s, o = self.make_comparable(other) |
| 314 | if o is NotImplemented: |
| 315 | return NotImplemented |
| 316 | return s > o |
| 317 | |
| 318 | def __ge__(self, other): |
| 319 | s, o = self.make_comparable(other) |
nothing calls this directly
no test coverage detected