Fix typo (already fixed in 2.7).
diff --git a/Lib/heapq.py b/Lib/heapq.py
index c13d650..b36aabd 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -195,7 +195,7 @@
     heapify(result)
     _heappushpop = heappushpop
     for elem in it:
-        heappushpop(result, elem)
+        _heappushpop(result, elem)
     result.sort(reverse=True)
     return result