diff --git a/Python/compile.c b/Python/compile.c index dba10237a2a735..e9506d6d978d89 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -5811,7 +5811,9 @@ compiler_comprehension(struct compiler *c, expr_ty e, int type, outermost = (comprehension_ty) asdl_seq_GET(generators, 0); if (is_inlined) { - VISIT(c, expr, outermost->iter); + if (compiler_visit_expr(c, outermost->iter) < 0) { + goto error; + } if (push_inlined_comprehension_state(c, loc, entry, &inline_state)) { goto error; }