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
ab2e583f
Commit
ab2e583f
authored
May 07, 2008
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added code to compile new _bytesio on Windows
parent
af4d107a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
PC/VS8.0/pythoncore.vcproj
PC/VS8.0/pythoncore.vcproj
+4
-0
PC/config.c
PC/config.c
+2
-0
PCbuild/pythoncore.vcproj
PCbuild/pythoncore.vcproj
+4
-0
No files found.
PC/VS8.0/pythoncore.vcproj
View file @
ab2e583f
...
...
@@ -990,6 +990,10 @@
RelativePath=
"..\..\Modules\_fileio.c"
>
</File>
<File
^M
RelativePath=
"..\..\Modules\_bytesio.c"
^M
>
^M
</File>
^M
<File
RelativePath=
"..\..\Modules\_functoolsmodule.c"
>
...
...
PC/config.c
View file @
ab2e583f
...
...
@@ -59,6 +59,7 @@ extern void init_subprocess(void);
extern
void
init_lsprof
(
void
);
extern
void
init_ast
(
void
);
extern
void
init_fileio
(
void
);
extern
void
init_bytesio
(
void
);
extern
void
initatexit
(
void
);
extern
void
_PyWarnings_Init
(
void
);
...
...
@@ -148,6 +149,7 @@ struct _inittab _PyImport_Inittab[] = {
{
"_warnings"
,
_PyWarnings_Init
},
{
"_fileio"
,
init_fileio
},
{
"_bytesio"
,
init_bytesio
},
{
"atexit"
,
initatexit
},
/* Sentinel */
...
...
PCbuild/pythoncore.vcproj
View file @
ab2e583f
...
...
@@ -994,6 +994,10 @@
RelativePath=
"..\Modules\_fileio.c"
>
</File>
<File
RelativePath=
"..\Modules\_bytesio.c"
>
</File>
<File
RelativePath=
"..\Modules\_functoolsmodule.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