Skip to content

Commit fc46707

Browse files
Fix mistake (extra underscores)
1 parent 1b0b6f3 commit fc46707

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/heapq.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ def heapify_max(x):
216216
# For backwards compadibility
217217
_heappop_max = heappop_max
218218
_heapreplace_max = heapreplace_max
219-
_heappush_max = _heappush_max
220-
_heappushpop_max = _heappushpop_max
221-
_heapify_max = _heapify_max
219+
_heappush_max = heappush_max
220+
_heappushpop_max = heappushpop_max
221+
_heapify_max = heapify_max
222222

223223

224224
# 'heap' is a heap at all indices >= startpos, except possibly for pos. pos

0 commit comments

Comments
 (0)