Push the item onto the heap.
(self, item)
| 20 | heapq.heapify(self._lst) |
| 21 | |
| 22 | def push(self, item): |
| 23 | '''Push the item onto the heap.''' |
| 24 | return heapq.heappush(self._lst, self._wrap(item)) |
| 25 | |
| 26 | def popmin(self): |
| 27 | '''Pop the smallest item off the heap''' |
no test coverage detected