(self, other)
| 340 | return NotImplemented |
| 341 | |
| 342 | def __lt__(self, other): |
| 343 | if isinstance(other, PokerHand): |
| 344 | return self.compare_with(other) == "Loss" |
| 345 | return NotImplemented |
| 346 | |
| 347 | def __le__(self, other): |
| 348 | if isinstance(other, PokerHand): |
nothing calls this directly
no test coverage detected