diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pylifecycle.c | 1 | ||||
-rw-r--r-- | Python/suggestions.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index e648492..f3b64fe 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -10,6 +10,7 @@ #include "pycore_fileutils.h" // _Py_ResetForceASCII() #include "pycore_floatobject.h" // _PyFloat_InitTypes() #include "pycore_genobject.h" // _PyAsyncGen_Fini() +#include "pycore_global_objects_fini_generated.h" // "_PyStaticObjects_CheckRefcnt() #include "pycore_import.h" // _PyImport_BootstrapImp() #include "pycore_initconfig.h" // _PyStatus_OK() #include "pycore_list.h" // _PyList_Fini() diff --git a/Python/suggestions.c b/Python/suggestions.c index 239245d..eee61b2 100644 --- a/Python/suggestions.c +++ b/Python/suggestions.c @@ -1,6 +1,7 @@ #include "Python.h" #include "pycore_frame.h" -#include "pycore_runtime_init.h" // _Py_ID() +#include "pycore_runtime.h" // _PyRuntime +#include "pycore_global_objects.h" // _Py_ID() #include "pycore_pyerrors.h" #include "pycore_code.h" // _PyCode_GetVarnames() |