Added code to compile new _bytesio on Windows
This commit is contained in:
parent
75ca4ea6e1
commit
8e99760c90
|
@ -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);
|
||||||
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[] = {
|
||||||
{"_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 @@
|
||||||
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"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue