summaryrefslogtreecommitdiff
path: root/PC/config.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-11-08 10:24:38 +0000
committerRaymond Hettinger <python@rcn.com>2003-11-08 10:24:38 +0000
commit9d03a7a485257294837e2defecdfebeae78d1780 (patch)
tree3609e47063ef7eda245dd27c3f0581293becd42e /PC/config.c
parentd01421d2eaa0022d70f9b62c6ea0fef1c878d20f (diff)
downloadcpython-9d03a7a485257294837e2defecdfebeae78d1780.tar.gz
Convert heapq.py to a C implementation.
Diffstat (limited to 'PC/config.c')
-rw-r--r--PC/config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c
index ea65e91221..d163b797a4 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -46,6 +46,7 @@ extern void initxxsubtype(void);
extern void initzipimport(void);
extern void init_random(void);
extern void inititertools(void);
+extern void initheapq(void);
/* tools/freeze/makeconfig.py marker for additional "extern" */
/* -- ADDMODULE MARKER 1 -- */
@@ -98,6 +99,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_weakref", init_weakref},
{"_hotshot", init_hotshot},
{"_random", init_random},
+ {"heapq", initheapq},
{"itertools", inititertools},
{"xxsubtype", initxxsubtype},