summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/heapq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py
index 46dd4b6efc..a44d1beb04 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -308,7 +308,7 @@ def _siftup(heap, pos):
# If available, use C implementation
try:
- from _heapq import heappush, heappop, heapify, heapreplace, nlargest, nsmallest, heappushpop
+ from _heapq import *
except ImportError:
pass