diff options
author | Nicholas Sim <nsim@posteo.net> | 2021-02-19 22:55:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-19 15:55:46 +0100 |
commit | 4a6bf276ed3e6687394afe26b0d9a061ac06fc6b (patch) | |
tree | 249bba20a6ee0ca4ae9b2a1661a12443370e5e46 /Python/pythonrun.c | |
parent | 839184f85cb2d2ad514fff9b431733d1c9607533 (diff) | |
download | cpython-git-4a6bf276ed3e6687394afe26b0d9a061ac06fc6b.tar.gz |
bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)
Include/{odictobject.h,parser_interface.h,picklebufobject.h,pydebug.h,pyfpe.h}
into Include/cpython/.
Parser: peg_api: include Python.h instead of parser_interface.h.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index dacf1a6471..338a1b96d3 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -26,8 +26,6 @@ #include "symtable.h" // PySymtable_BuildObject() #include "marshal.h" // PyMarshal_ReadLongFromFile() -#include "parser_interface.h" // PyParser_ASTFrom* - #ifdef MS_WINDOWS # include "malloc.h" // alloca() #endif |