summaryrefslogtreecommitdiffstats
path: root/PC/config.c
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-06-10 15:01:24 (GMT)
committerThomas Heller <theller@ctypes.org>2008-06-10 15:01:24 (GMT)
commit12f8a0538b7e0964d82ddda86c63df97129f0c99 (patch)
treee66e62eb613dab26e3a2794a7a8e126ab5636b76 /PC/config.c
parent97cf99fc7e8c56868711f7c91c3b1e37e4c66cba (diff)
downloadcpython-12f8a0538b7e0964d82ddda86c63df97129f0c99.zip
cpython-12f8a0538b7e0964d82ddda86c63df97129f0c99.tar.gz
cpython-12f8a0538b7e0964d82ddda86c63df97129f0c99.tar.bz2
Fix the Windows build by removing references to the cStringIO module
which no longer exists.
Diffstat (limited to 'PC/config.c')
-rw-r--r--PC/config.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c
index 23dbc645..4269aa5 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -23,7 +23,6 @@ extern void init_sha256(void);
extern void init_sha512(void);
extern void inittime(void);
extern void init_thread(void);
-extern void initcStringIO(void);
#ifdef WIN32
extern void initmsvcrt(void);
extern void init_locale(void);
@@ -95,7 +94,6 @@ struct _inittab _PyImport_Inittab[] = {
#ifdef WITH_THREAD
{"_thread", init_thread},
#endif
- {"cStringIO", initcStringIO},
#ifdef WIN32
{"msvcrt", initmsvcrt},
{"_locale", init_locale},