diff options
Diffstat (limited to 'Python/ast_opt.c')
-rw-r--r-- | Python/ast_opt.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/ast_opt.c b/Python/ast_opt.c index f2a2c25914..39e164adb8 100644 --- a/Python/ast_opt.c +++ b/Python/ast_opt.c @@ -462,9 +462,6 @@ astfold_mod(mod_ty node_, PyArena *ctx_, int optimize_) case Expression_kind: CALL(astfold_expr, expr_ty, node_->v.Expression.body); break; - case Suite_kind: - CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Suite.body); - break; default: break; } |