Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 12f8a05

Browse files
author
Thomas Heller
committed
Fix the Windows build by removing references to the cStringIO module
which no longer exists.
1 parent 97cf99f commit 12f8a05

6 files changed

Lines changed: 4 additions & 22 deletions

File tree

PC/VC6/pythoncore.dsp

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PC/VS7.1/pythoncore.vcproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -478,9 +478,6 @@
478478
<File
479479
RelativePath="..\..\PC\config.c">
480480
</File>
481-
<File
482-
RelativePath="..\..\Modules\cStringIO.c">
483-
</File>
484481
<File
485482
RelativePath="..\..\Modules\datetimemodule.c">
486483
</File>

PC/VS8.0/pythoncore.vcproj

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -990,10 +990,10 @@
990990
RelativePath="..\..\Modules\_fileio.c"
991991
>
992992
</File>
993-
<File^M
994-
RelativePath="..\..\Modules\_bytesio.c"^M
995-
>^M
996-
</File>^M
993+
<File^M
994+
RelativePath="..\..\Modules\_bytesio.c"^M
995+
>^M
996+
</File>^M
997997
<File
998998
RelativePath="..\..\Modules\_functoolsmodule.c"
999999
>
@@ -1050,10 +1050,6 @@
10501050
RelativePath="..\..\Modules\cmathmodule.c"
10511051
>
10521052
</File>
1053-
<File
1054-
RelativePath="..\..\Modules\cStringIO.c"
1055-
>
1056-
</File>
10571053
<File
10581054
RelativePath="..\..\Modules\datetimemodule.c"
10591055
>

PC/config.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ extern void init_sha256(void);
2323
extern void init_sha512(void);
2424
extern void inittime(void);
2525
extern void init_thread(void);
26-
extern void initcStringIO(void);
2726
#ifdef WIN32
2827
extern void initmsvcrt(void);
2928
extern void init_locale(void);
@@ -95,7 +94,6 @@ struct _inittab _PyImport_Inittab[] = {
9594
#ifdef WITH_THREAD
9695
{"_thread", init_thread},
9796
#endif
98-
{"cStringIO", initcStringIO},
9997
#ifdef WIN32
10098
{"msvcrt", initmsvcrt},
10199
{"_locale", init_locale},

PC/os2emx/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@ SRC.MODULES= $(addprefix $(TOP), \
287287
Modules/cmathmodule.c \
288288
Modules/_codecsmodule.c \
289289
Modules/collectionsmodule.c \
290-
Modules/cStringIO.c \
291290
Modules/_csv.c \
292291
Modules/datetimemodule.c \
293292
Modules/errnomodule.c \

PCbuild/pythoncore.vcproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,10 +1054,6 @@
10541054
RelativePath="..\Modules\cmathmodule.c"
10551055
>
10561056
</File>
1057-
<File
1058-
RelativePath="..\Modules\cStringIO.c"
1059-
>
1060-
</File>
10611057
<File
10621058
RelativePath="..\Modules\datetimemodule.c"
10631059
>

0 commit comments

Comments
 (0)