Commit ab2e583f authored by Christian Heimes's avatar Christian Heimes

Added code to compile new _bytesio on Windows

parent af4d107a
...@@ -990,6 +990,10 @@ ...@@ -990,6 +990,10 @@
RelativePath="..\..\Modules\_fileio.c" RelativePath="..\..\Modules\_fileio.c"
> >
</File> </File>
<File^M
RelativePath="..\..\Modules\_bytesio.c"^M
>^M
</File>^M
<File <File
RelativePath="..\..\Modules\_functoolsmodule.c" RelativePath="..\..\Modules\_functoolsmodule.c"
> >
......
...@@ -59,6 +59,7 @@ extern void init_subprocess(void); ...@@ -59,6 +59,7 @@ extern void init_subprocess(void);
extern void init_lsprof(void); extern void init_lsprof(void);
extern void init_ast(void); extern void init_ast(void);
extern void init_fileio(void); extern void init_fileio(void);
extern void init_bytesio(void);
extern void initatexit(void); extern void initatexit(void);
extern void _PyWarnings_Init(void); extern void _PyWarnings_Init(void);
...@@ -148,6 +149,7 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -148,6 +149,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_warnings", _PyWarnings_Init}, {"_warnings", _PyWarnings_Init},
{"_fileio", init_fileio}, {"_fileio", init_fileio},
{"_bytesio", init_bytesio},
{"atexit", initatexit}, {"atexit", initatexit},
/* Sentinel */ /* Sentinel */
......
...@@ -994,6 +994,10 @@ ...@@ -994,6 +994,10 @@
RelativePath="..\Modules\_fileio.c" RelativePath="..\Modules\_fileio.c"
> >
</File> </File>
<File
RelativePath="..\Modules\_bytesio.c"
>
</File>
<File <File
RelativePath="..\Modules\_functoolsmodule.c" RelativePath="..\Modules\_functoolsmodule.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