Update heapq from Python 3.11

This commit is contained in:
DimitrisJim
2023-06-14 00:18:14 +03:00
parent a6a92128f0
commit a4330c3558

2
Lib/heapq.py vendored
View File

@@ -12,6 +12,8 @@ heappush(heap, item) # pushes a new item on the heap
item = heappop(heap) # pops the smallest item from the heap
item = heap[0] # smallest item on the heap without popping it
heapify(x) # transforms list into a heap, in-place, in linear time
item = heappushpop(heap, item) # pushes a new item and then returns
# the smallest item; the heap size is unchanged
item = heapreplace(heap, item) # pops and returns smallest item, and adds
# new item; the heap size is unchanged