diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-01-16 14:42:36 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-01-16 14:42:36 (GMT) |
commit | 8f56e0909f77bf7f563fcebbc7e2c5dd241d5c47 (patch) | |
tree | 8e94b3cbbe64f018617b5963189b74f857f4c874 /Python/ast.c | |
parent | d1bb06f7ad8eee9a99cf4d3faecf0dd2b5fd8c84 (diff) | |
download | cpython-8f56e0909f77bf7f563fcebbc7e2c5dd241d5c47.zip cpython-8f56e0909f77bf7f563fcebbc7e2c5dd241d5c47.tar.gz cpython-8f56e0909f77bf7f563fcebbc7e2c5dd241d5c47.tar.bz2 |
rewrite such that this actually makes sense
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index 3417fe3..3440308 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -490,7 +490,7 @@ PyAST_Validate(mod_ty mod) return res; } -/* This is down here, so defines like "test" don't intefere with access AST above. */ +/* This is done here, so defines like "test" don't intefere with AST use above. */ #include "grammar.h" #include "parsetok.h" #include "graminit.h" |