Skip to content

Commit 0a23d67

Browse files
committed
Copy symtable.c changes
1 parent 7e2e6f6 commit 0a23d67

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Python/symtable.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1681,6 +1681,10 @@ symtable_visit_expr(struct symtable *st, expr_ty e)
16811681
case JoinedStr_kind:
16821682
VISIT_SEQ(st, expr, e->v.JoinedStr.values);
16831683
break;
1684+
case TagString_kind:
1685+
VISIT(st, expr, e->v.TagString.tag);
1686+
VISIT(st, expr, e->v.TagString.str);
1687+
break;
16841688
case Constant_kind:
16851689
/* Nothing to do here. */
16861690
break;

0 commit comments

Comments
 (0)