summaryrefslogtreecommitdiffstats
path: root/PC/config.c
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-06-12 22:27:27 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-06-12 22:27:27 (GMT)
commit9d865c96506da85fd4b5622ad26491918c7c529e (patch)
treed70df8542d8f848033fb5774c0ef189a9037dbd0 /PC/config.c
parent9f0f960d4ce48062dcb286903721fa89d6037159 (diff)
downloadcpython-9d865c96506da85fd4b5622ad26491918c7c529e.zip
cpython-9d865c96506da85fd4b5622ad26491918c7c529e.tar.gz
cpython-9d865c96506da85fd4b5622ad26491918c7c529e.tar.bz2
On Windows, repair compilation of builtin modules _stringio and _pickle.
(Alexandre, the MSVC build files are in PCBuild. the PC/Vxxx directories try to support older compilers)
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 a7f2ede..f2bdfdb 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -60,6 +60,8 @@ extern PyObject* PyInit__lsprof(void);
extern PyObject* PyInit__ast(void);
extern PyObject* PyInit__fileio(void);
extern PyObject* PyInit__bytesio(void);
+extern PyObject* PyInit__stringio(void);
+extern PyObject* PyInit__pickle(void);
extern PyObject* PyInit_atexit(void);
extern PyObject* _PyWarnings_Init(void);
@@ -151,6 +153,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_fileio", PyInit__fileio},
{"_bytesio", PyInit__bytesio},
{"_stringio", PyInit__stringio},
+ {"_pickle", PyInit__pickle},
{"atexit", PyInit_atexit},
/* Sentinel */