Skip to content

Commit 5037f89

Browse files
committed
Remove no-longer used path in codegen.c
1 parent 6ea3af3 commit 5037f89

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Python/codegen.c

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4081,16 +4081,6 @@ codegen_template_str(compiler *c, expr_ty e)
40814081
}
40824082
else {
40834083
VISIT(c, expr, value);
4084-
Py_ssize_t j;
4085-
for (j = i + 1; j < value_count; j++) {
4086-
value = asdl_seq_GET(e->v.TemplateStr.values, j);
4087-
if (value->kind == Interpolation_kind) {
4088-
break;
4089-
}
4090-
VISIT(c, expr, value);
4091-
ADDOP_INPLACE(c, loc, Add);
4092-
}
4093-
i = j - 1;
40944084
stringslen++;
40954085
last_was_interpolation = 0;
40964086
}

0 commit comments

Comments
 (0)