Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
12f8a053
Commit
12f8a053
authored
Jun 10, 2008
by
Thomas Heller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the Windows build by removing references to the cStringIO module
which no longer exists.
parent
97cf99fc
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
22 deletions
+4
-22
PC/VC6/pythoncore.dsp
PC/VC6/pythoncore.dsp
+0
-4
PC/VS7.1/pythoncore.vcproj
PC/VS7.1/pythoncore.vcproj
+0
-3
PC/VS8.0/pythoncore.vcproj
PC/VS8.0/pythoncore.vcproj
+4
-8
PC/config.c
PC/config.c
+0
-2
PC/os2emx/Makefile
PC/os2emx/Makefile
+0
-1
PCbuild/pythoncore.vcproj
PCbuild/pythoncore.vcproj
+0
-4
No files found.
PC/VC6/pythoncore.dsp
View file @
12f8a053
...
...
@@ -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
...
...
PC/VS7.1/pythoncore.vcproj
View file @
12f8a053
...
...
@@ -478,9 +478,6 @@
<File
RelativePath=
"..\..\PC\config.c"
>
</File>
<File
RelativePath=
"..\..\Modules\cStringIO.c"
>
</File>
<File
RelativePath=
"..\..\Modules\datetimemodule.c"
>
</File>
...
...
PC/VS8.0/pythoncore.vcproj
View file @
12f8a053
...
...
@@ -990,10 +990,10 @@
RelativePath=
"..\..\Modules\_fileio.c"
>
</File>
<File
^M
RelativePath=
"..\..\Modules\_bytesio.c"
^M
>
^M
</File>
^M
<File
^M
RelativePath=
"..\..\Modules\_bytesio.c"
^M
>
^M
</File>
^M
<File
RelativePath=
"..\..\Modules\_functoolsmodule.c"
>
...
...
@@ -1050,10 +1050,6 @@
RelativePath=
"..\..\Modules\cmathmodule.c"
>
</File>
<File
RelativePath=
"..\..\Modules\cStringIO.c"
>
</File>
<File
RelativePath=
"..\..\Modules\datetimemodule.c"
>
...
...
PC/config.c
View file @
12f8a053
...
...
@@ -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
},
...
...
PC/os2emx/Makefile
View file @
12f8a053
...
...
@@ -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
\
...
...
PCbuild/pythoncore.vcproj
View file @
12f8a053
...
...
@@ -1054,10 +1054,6 @@
RelativePath=
"..\Modules\cmathmodule.c"
>
</File>
<File
RelativePath=
"..\Modules\cStringIO.c"
>
</File>
<File
RelativePath=
"..\Modules\datetimemodule.c"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment