mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
On Windows, repair compilation of builtin modules _stringio and _pickle.
(Alexandre, the MSVC build files are in PCBuild. the PC/Vxxx directories try to support older compilers)
This commit is contained in:
parent
9f0f960d4c
commit
9d865c9650
5 changed files with 33 additions and 0 deletions
|
|
@ -60,6 +60,8 @@ extern PyObject* PyInit__lsprof(void);
|
|||
extern PyObject* PyInit__ast(void);
|
||||
extern PyObject* PyInit__fileio(void);
|
||||
extern PyObject* PyInit__bytesio(void);
|
||||
extern PyObject* PyInit__stringio(void);
|
||||
extern PyObject* PyInit__pickle(void);
|
||||
extern PyObject* PyInit_atexit(void);
|
||||
extern PyObject* _PyWarnings_Init(void);
|
||||
|
||||
|
|
@ -151,6 +153,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"_fileio", PyInit__fileio},
|
||||
{"_bytesio", PyInit__bytesio},
|
||||
{"_stringio", PyInit__stringio},
|
||||
{"_pickle", PyInit__pickle},
|
||||
{"atexit", PyInit_atexit},
|
||||
|
||||
/* Sentinel */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue