(self, other)
| 30 | return d |
| 31 | |
| 32 | def __gt__(self, other): |
| 33 | if not isinstance(other, PQNode): |
| 34 | return -1 |
| 35 | if self.priority == other.priority: |
| 36 | return self.entry_id > other.entry_id |
| 37 | return self.priority > other.priority |
| 38 | |
| 39 | def __ge__(self, other): |
| 40 | if not isinstance(other, PQNode): |
nothing calls this directly
no outgoing calls
no test coverage detected