Commit 12f8a053 authored by Thomas Heller's avatar Thomas Heller

Fix the Windows build by removing references to the cStringIO module

which no longer exists.
parent 97cf99fc
......@@ -293,10 +293,6 @@ SOURCE=..\..\Modules\zlib\crc32.c
# End Source File
# Begin Source File
SOURCE=..\..\Modules\cStringIO.c
# End Source File
# Begin Source File
SOURCE=..\..\Modules\datetimemodule.c
# End Source File
# Begin Source File
......
......@@ -478,9 +478,6 @@
<File
RelativePath="..\..\PC\config.c">
</File>
<File
RelativePath="..\..\Modules\cStringIO.c">
</File>
<File
RelativePath="..\..\Modules\datetimemodule.c">
</File>
......
......@@ -1050,10 +1050,6 @@
RelativePath="..\..\Modules\cmathmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\cStringIO.c"
>
</File>
<File
RelativePath="..\..\Modules\datetimemodule.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},
......
......@@ -287,7 +287,6 @@ SRC.MODULES= $(addprefix $(TOP), \
Modules/cmathmodule.c \
Modules/_codecsmodule.c \
Modules/collectionsmodule.c \
Modules/cStringIO.c \
Modules/_csv.c \
Modules/datetimemodule.c \
Modules/errnomodule.c \
......
......@@ -1054,10 +1054,6 @@
RelativePath="..\Modules\cmathmodule.c"
>
</File>
<File
RelativePath="..\Modules\cStringIO.c"
>
</File>
<File
RelativePath="..\Modules\datetimemodule.c"
>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment