diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-06-08 22:18:32 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-06-08 22:18:32 (GMT) |
commit | 8ea4ded9a69ace6f8520615f770308fcdb485bbb (patch) | |
tree | f0cd9b59afa82ad1d1b81f42c1fa56cad3ad6ab6 /Python | |
parent | 450d5610288e7a78137e444f2b436769b2d1994a (diff) | |
download | cpython-8ea4ded9a69ace6f8520615f770308fcdb485bbb.zip cpython-8ea4ded9a69ace6f8520615f770308fcdb485bbb.tar.gz cpython-8ea4ded9a69ace6f8520615f770308fcdb485bbb.tar.bz2 |
remove useless assertion
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ast.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index 271585f..abad2d9 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -3130,7 +3130,6 @@ ast_for_stmt(struct compiling *c, const node *n) n = CHILD(n, 0); } if (TYPE(n) == small_stmt) { - REQ(n, small_stmt); n = CHILD(n, 0); /* small_stmt: expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt | import_stmt | global_stmt | exec_stmt |