(self, other)
| 298 | return s, o |
| 299 | |
| 300 | def __lt__(self, other): |
| 301 | s, o = self.make_comparable(other) |
| 302 | if o is NotImplemented: |
| 303 | return NotImplemented |
| 304 | return s < o |
| 305 | |
| 306 | def __le__(self, other): |
| 307 | s, o = self.make_comparable(other) |
nothing calls this directly
no test coverage detected