diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-08-13 04:10:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-08-13 04:10:50 (GMT) |
commit | ea281a54f36e9c8f54759686b65361e60829c412 (patch) | |
tree | 7e6023820157f86d72d4165329495cf04eb0ac8c /Python | |
parent | f8e7543df95d5cc12f7478d2eed690621919d68a (diff) | |
download | cpython-ea281a54f36e9c8f54759686b65361e60829c412.zip cpython-ea281a54f36e9c8f54759686b65361e60829c412.tar.gz cpython-ea281a54f36e9c8f54759686b65361e60829c412.tar.bz2 |
include header with PyAST_Validate
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bltinmodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 94b2798..9de8ca0 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -6,6 +6,9 @@ #include "node.h" #include "code.h" +#include "asdl.h" +#include "ast.h" + #include <ctype.h> #ifdef HAVE_LANGINFO_H |