(self, item, heappush=heapq.heappush)
| 288 | self._queue = [] |
| 289 | |
| 290 | def _put(self, item, heappush=heapq.heappush): |
| 291 | heappush(self._queue, item) |
| 292 | |
| 293 | def _get(self, heappop=heapq.heappop): |
| 294 | return heappop(self._queue) |
nothing calls this directly
no test coverage detected