diff options
author | Victor Stinner <vstinner@python.org> | 2025-03-19 22:01:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-19 22:01:32 (GMT) |
commit | 20c5f969dd12a0b3d5ea7c03fedf3e2ac202c2c0 (patch) | |
tree | c37df9e86e0c16d64c404a31c8b31090eec6a155 /Python/pythonrun.c | |
parent | 63b5aed06ed6fcd7956c9b99eb0a3651116cf2e4 (diff) | |
download | cpython-20c5f969dd12a0b3d5ea7c03fedf3e2ac202c2c0.zip cpython-20c5f969dd12a0b3d5ea7c03fedf3e2ac202c2c0.tar.gz cpython-20c5f969dd12a0b3d5ea7c03fedf3e2ac202c2c0.tar.bz2 |
gh-131238: Remove more includes from pycore_interp.h (#131480)
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 6e24131..23af8b6 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -15,6 +15,7 @@ #include "pycore_ceval.h" // _Py_EnterRecursiveCall() #include "pycore_compile.h" // _PyAST_Compile() #include "pycore_fileutils.h" // _PyFile_Flush +#include "pycore_import.h" // _PyImport_GetImportlibExternalLoader() #include "pycore_interp.h" // PyInterpreterState.importlib #include "pycore_object.h" // _PyDebug_PrintTotalRefs() #include "pycore_parser.h" // _PyParser_ASTFromString() @@ -24,6 +25,7 @@ #include "pycore_pythonrun.h" // export _PyRun_InteractiveLoopObject() #include "pycore_sysmodule.h" // _PySys_SetAttr() #include "pycore_traceback.h" // _PyTraceBack_Print() +#include "pycore_unicodeobject.h" // _PyUnicode_Equal() #include "errcode.h" // E_EOF #include "marshal.h" // PyMarshal_ReadLongFromFile() |