mirror of https://github.com/python/cpython.git
Fix the Windows build by removing references to the cStringIO module
which no longer exists.
This commit is contained in:
parent
97cf99fc7e
commit
12f8a0538b
|
@ -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 @@
|
||||||
<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>
|
||||||
|
|
|
@ -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);
|
||||||
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[] = {
|
||||||
#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), \
|
||||||
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 @@
|
||||||
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"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue