* Restore the pure python version of heapq.py.
* Mark the C version as private and only use when available.
diff --git a/PC/config.c b/PC/config.c
index e618302..1b8ddf1 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -47,7 +47,7 @@
 extern void init_random(void);
 extern void inititertools(void);
 extern void initcollections(void);
-extern void initheapq(void);
+extern void init_heapq(void);
 extern void init_bisect(void);
 extern void init_symtable(void);
 extern void initmmap(void);
@@ -135,7 +135,7 @@
 	{"_hotshot", init_hotshot},
 	{"_random", init_random},
         {"_bisect", init_bisect},
-        {"heapq", initheapq},
+        {"_heapq", init_heapq},
 	{"itertools", inititertools},
         {"collections", initcollections},
 	{"_symtable", init_symtable},