Make life easier for non-CPython implementations
diff --git a/Lib/heapq.py b/Lib/heapq.py
index 19a457b..b74818e 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -307,7 +307,7 @@
 
 # If available, use C implementation
 try:
-    from _heapq import heappush, heappop, heapify, heapreplace, nlargest, nsmallest, heappushpop
+    from _heapq import *
 except ImportError:
     pass