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 ...@@ -293,10 +293,6 @@ SOURCE=..\..\Modules\zlib\crc32.c
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=..\..\Modules\cStringIO.c
# End Source File
# Begin Source File
SOURCE=..\..\Modules\datetimemodule.c SOURCE=..\..\Modules\datetimemodule.c
# End Source File # End Source File
# Begin Source File # Begin Source File
......
...@@ -478,9 +478,6 @@ ...@@ -478,9 +478,6 @@
<File <File
RelativePath="..\..\PC\config.c"> RelativePath="..\..\PC\config.c">
</File> </File>
<File
RelativePath="..\..\Modules\cStringIO.c">
</File>
<File <File
RelativePath="..\..\Modules\datetimemodule.c"> RelativePath="..\..\Modules\datetimemodule.c">
</File> </File>
......
...@@ -990,10 +990,10 @@ ...@@ -990,10 +990,10 @@
RelativePath="..\..\Modules\_fileio.c" RelativePath="..\..\Modules\_fileio.c"
> >
</File> </File>
<File^M <File^M
RelativePath="..\..\Modules\_bytesio.c"^M RelativePath="..\..\Modules\_bytesio.c"^M
>^M >^M
</File>^M </File>^M
<File <File
RelativePath="..\..\Modules\_functoolsmodule.c" RelativePath="..\..\Modules\_functoolsmodule.c"
> >
...@@ -1050,10 +1050,6 @@ ...@@ -1050,10 +1050,6 @@
RelativePath="..\..\Modules\cmathmodule.c" RelativePath="..\..\Modules\cmathmodule.c"
> >
</File> </File>
<File
RelativePath="..\..\Modules\cStringIO.c"
>
</File>
<File <File
RelativePath="..\..\Modules\datetimemodule.c" RelativePath="..\..\Modules\datetimemodule.c"
> >
......
...@@ -23,7 +23,6 @@ extern void init_sha256(void); ...@@ -23,7 +23,6 @@ extern void init_sha256(void);
extern void init_sha512(void); extern void init_sha512(void);
extern void inittime(void); extern void inittime(void);
extern void init_thread(void); extern void init_thread(void);
extern void initcStringIO(void);
#ifdef WIN32 #ifdef WIN32
extern void initmsvcrt(void); extern void initmsvcrt(void);
extern void init_locale(void); extern void init_locale(void);
...@@ -95,7 +94,6 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -95,7 +94,6 @@ struct _inittab _PyImport_Inittab[] = {
#ifdef WITH_THREAD #ifdef WITH_THREAD
{"_thread", init_thread}, {"_thread", init_thread},
#endif #endif
{"cStringIO", initcStringIO},
#ifdef WIN32 #ifdef WIN32
{"msvcrt", initmsvcrt}, {"msvcrt", initmsvcrt},
{"_locale", init_locale}, {"_locale", init_locale},
......
...@@ -287,7 +287,6 @@ SRC.MODULES= $(addprefix $(TOP), \ ...@@ -287,7 +287,6 @@ SRC.MODULES= $(addprefix $(TOP), \
Modules/cmathmodule.c \ Modules/cmathmodule.c \
Modules/_codecsmodule.c \ Modules/_codecsmodule.c \
Modules/collectionsmodule.c \ Modules/collectionsmodule.c \
Modules/cStringIO.c \
Modules/_csv.c \ Modules/_csv.c \
Modules/datetimemodule.c \ Modules/datetimemodule.c \
Modules/errnomodule.c \ Modules/errnomodule.c \
......
...@@ -1054,10 +1054,6 @@ ...@@ -1054,10 +1054,6 @@
RelativePath="..\Modules\cmathmodule.c" RelativePath="..\Modules\cmathmodule.c"
> >
</File> </File>
<File
RelativePath="..\Modules\cStringIO.c"
>
</File>
<File <File
RelativePath="..\Modules\datetimemodule.c" 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