mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Added code to compile new _bytesio on Windows
This commit is contained in:
parent
75ca4ea6e1
commit
8e99760c90
3 changed files with 10 additions and 0 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue