(self, other)
| 37 | return self.priority > other.priority |
| 38 | |
| 39 | def __ge__(self, other): |
| 40 | if not isinstance(other, PQNode): |
| 41 | return -1 |
| 42 | return self.priority >= other.priority |
| 43 | |
| 44 | def __lt__(self, other): |
| 45 | if not isinstance(other, PQNode): |
nothing calls this directly
no outgoing calls
no test coverage detected