summaryrefslogtreecommitdiffstats
path: root/PC/config.c
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-06-11 23:38:40 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-06-11 23:38:40 (GMT)
commitccc63b1d747857e0a5ce1af62279e79c516c6a4c (patch)
tree579e144e05fb84b89ebb1be582ceb77d3dcd7aa2 /PC/config.c
parent66b343b65fa255b35536f781d0eb8db66325572b (diff)
downloadcpython-ccc63b1d747857e0a5ce1af62279e79c516c6a4c.zip
cpython-ccc63b1d747857e0a5ce1af62279e79c516c6a4c.tar.gz
cpython-ccc63b1d747857e0a5ce1af62279e79c516c6a4c.tar.bz2
Added Windows build config for _stringio and _pickle.
Diffstat (limited to 'PC/config.c')
-rw-r--r--PC/config.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c
index 264c494..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);
@@ -150,6 +152,8 @@ struct _inittab _PyImport_Inittab[] = {
{"_fileio", PyInit__fileio},
{"_bytesio", PyInit__bytesio},
+ {"_stringio", PyInit__stringio},
+ {"_pickle", PyInit__pickle},
{"atexit", PyInit_atexit},
/* Sentinel */