diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2020-06-20 21:07:25 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 19:07:25 +0100 |
commit | 314858e2763e76e77029ea0b691d749c32939087 (patch) | |
tree | 697996061fc2d8b019306ddd02b4ea21fbdd2cb2 /Python/pythonrun.c | |
parent | 55460ee6dc9a4f16bd68d6b6be3a8398c7d4a596 (diff) | |
download | cpython-git-314858e2763e76e77029ea0b691d749c32939087.tar.gz |
bpo-40939: Remove the old parser (Part 2) (GH-21005)
Remove some remaining files and Makefile targets for the old parser
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 7a3b5b52ac..04fad04227 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -20,13 +20,10 @@ #include "pycore_pystate.h" // _PyInterpreterState_GET() #include "pycore_sysmodule.h" // _PySys_Audit() -#include "node.h" // node #include "token.h" // INDENT -#include "parsetok.h" // perrdetail #include "errcode.h" // E_EOF #include "code.h" // PyCodeObject #include "symtable.h" // PySymtable_BuildObject() -#include "ast.h" // PyAST_FromNodeObject() #include "marshal.h" // PyMarshal_ReadLongFromFile() #include "pegen_interface.h" // PyPegen_ASTFrom* |