mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Add _opcode to Windows build env
This commit is contained in:
parent
d27b455bbc
commit
71135ac72d
2 changed files with 3 additions and 0 deletions
|
@ -66,6 +66,7 @@ extern PyObject* PyInit_atexit(void);
|
|||
extern PyObject* _PyWarnings_Init(void);
|
||||
extern PyObject* PyInit__string(void);
|
||||
extern PyObject* PyInit__stat(void);
|
||||
extern PyObject* PyInit__opcode(void);
|
||||
|
||||
/* tools/freeze/makeconfig.py marker for additional "extern" */
|
||||
/* -- ADDMODULE MARKER 1 -- */
|
||||
|
@ -158,6 +159,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"_pickle", PyInit__pickle},
|
||||
{"atexit", PyInit_atexit},
|
||||
{"_stat", PyInit__stat},
|
||||
{"_opcode", PyInit__opcode},
|
||||
|
||||
/* Sentinel */
|
||||
{0, 0}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue