summaryrefslogtreecommitdiffstats
path: root/PC/config.c
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2006-07-27 23:50:40 (GMT)
committerBarry Warsaw <barry@python.org>2006-07-27 23:50:40 (GMT)
commitd17301f95cd9f981264307bafd4f63eec5143d44 (patch)
tree82822aa93471d1c03b52fecbee355d8760f627be /PC/config.c
parent92e9fd5a5e551f899dc0a277fb31dbe71f177fb0 (diff)
downloadcpython-d17301f95cd9f981264307bafd4f63eec5143d44.zip
cpython-d17301f95cd9f981264307bafd4f63eec5143d44.tar.gz
cpython-d17301f95cd9f981264307bafd4f63eec5143d44.tar.bz2
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 b832d7c..a9a280d 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}