summaryrefslogtreecommitdiff
path: root/PC/config.c
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2006-07-27 23:50:40 +0000
committerBarry Warsaw <barry@python.org>2006-07-27 23:50:40 +0000
commit42cf12588bca31134a12f159faf934e090ccf81d (patch)
tree613966aec068fc147741328545d89ce106fc9118 /PC/config.c
parent5452e81f9c3a68607a06f19185cc82e728ea44fa (diff)
downloadcpython-42cf12588bca31134a12f159faf934e090ccf81d.tar.gz
Enable the building of the _types module on Windows.
Note that this has only been tested for VS 2003 since that's all I have.
Diffstat (limited to 'PC/config.c')
-rw-r--r--PC/config.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c
index b832d7c64f..a9a280ded1 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -67,6 +67,7 @@ extern void init_codecs_tw(void);
extern void init_subprocess(void);
extern void init_lsprof(void);
extern void init_ast(void);
+extern void init_types(void);
/* tools/freeze/makeconfig.py marker for additional "extern" */
/* -- ADDMODULE MARKER 1 -- */
@@ -161,6 +162,8 @@ struct _inittab _PyImport_Inittab[] = {
{"__builtin__", NULL},
{"sys", NULL},
{"exceptions", NULL},
+
+ {"_types", init_types},
/* Sentinel */
{0, 0}