diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ast.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/ast.c b/Python/ast.c index 2cc41b2..b3f4fcb 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -1347,9 +1347,6 @@ ast_for_atom(struct compiling *c, const node *n) if (TYPE(ch) == yield_expr) return ast_for_expr(c, ch); - if ((NCH(ch) > 1) && (TYPE(CHILD(ch, 1)) == gen_for)) - return ast_for_genexp(c, ch); - return ast_for_testlist_gexp(c, ch); case LSQB: /* list (or list comprehension) */ ch = CHILD(n, 1); |