diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ast_opt.c | 1 | ||||
-rw-r--r-- | Python/bltinmodule.c | 11 | ||||
-rw-r--r-- | Python/compile.c | 1 | ||||
-rw-r--r-- | Python/import.c | 1 | ||||
-rw-r--r-- | Python/pylifecycle.c | 1 | ||||
-rw-r--r-- | Python/pythonrun.c | 1 | ||||
-rw-r--r-- | Python/symtable.c | 5 |
7 files changed, 2 insertions, 19 deletions
diff --git a/Python/ast_opt.c b/Python/ast_opt.c index 1f9cb773ea..6f72a7f63b 100644 --- a/Python/ast_opt.c +++ b/Python/ast_opt.c @@ -1,7 +1,6 @@ /* AST Optimizer */ #include "Python.h" #include "Python-ast.h" -#include "node.h" #include "ast.h" diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 6c8672adfc..6781589c29 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1,16 +1,9 @@ /* Built-in functions */ #include "Python.h" -#include "Python-ast.h" -#include "pycore_state.h" - -#include "node.h" -#include "code.h" - -#include "asdl.h" -#include "ast.h" - #include <ctype.h> +#include "ast.h" +#include "pycore_state.h" _Py_IDENTIFIER(__builtins__); _Py_IDENTIFIER(__dict__); diff --git a/Python/compile.c b/Python/compile.c index 45a8c573a5..beceeea86b 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -24,7 +24,6 @@ #include "Python.h" #include "Python-ast.h" -#include "node.h" #include "ast.h" #include "code.h" #include "symtable.h" diff --git a/Python/import.c b/Python/import.c index c0ea968fb8..fcd88514ee 100644 --- a/Python/import.c +++ b/Python/import.c @@ -3,7 +3,6 @@ #include "Python.h" #include "Python-ast.h" -#undef Yield /* undefine macro conflicting with winbase.h */ #include "pycore_hash.h" #include "pycore_lifecycle.h" #include "pycore_mem.h" diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 4c5cb53429..318d7cb4ba 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -3,7 +3,6 @@ #include "Python.h" #include "Python-ast.h" -#undef Yield /* undefine macro conflicting with winbase.h */ #include "pycore_context.h" #include "pycore_hamt.h" #include "pycore_lifecycle.h" diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 2f61aab40d..2b9f4f0415 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -11,7 +11,6 @@ #include "Python.h" #include "Python-ast.h" -#undef Yield /* undefine macro conflicting with winbase.h */ #include "pycore_state.h" #include "grammar.h" #include "node.h" diff --git a/Python/symtable.c b/Python/symtable.c index 48e1515fa3..40f91789c6 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -1,10 +1,5 @@ #include "Python.h" #include "pycore_state.h" -#ifdef Yield -#undef Yield /* undefine conflicting macro from winbase.h */ -#endif -#include "Python-ast.h" -#include "code.h" #include "symtable.h" #include "structmember.h" |