summaryrefslogtreecommitdiff
path: root/Python/symtable.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-07 11:13:55 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-10-07 11:13:55 +0000
commitc135641ef57543535b855ba6313806dbcb15ecb6 (patch)
treeb157d7fa5081cbe26e08143fd462f8a0c39bf93d /Python/symtable.c
parentcbad113b14189b87ed4162cdab6e1a3f78ca1169 (diff)
parent9b15007bbc659ded34d8148f287e4b0e956d05a5 (diff)
downloadcpython-c135641ef57543535b855ba6313806dbcb15ecb6.tar.gz
Merge typo fixes from 3.5
Diffstat (limited to 'Python/symtable.c')
-rw-r--r--Python/symtable.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Python/symtable.c b/Python/symtable.c
index 64910d8a55..8431d514f6 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -1439,6 +1439,14 @@ symtable_visit_expr(struct symtable *st, expr_ty e)
VISIT_SEQ(st, expr, e->v.Call.args);
VISIT_SEQ_WITH_NULL(st, keyword, e->v.Call.keywords);
break;
+ case FormattedValue_kind:
+ VISIT(st, expr, e->v.FormattedValue.value);
+ if (e->v.FormattedValue.format_spec)
+ VISIT(st, expr, e->v.FormattedValue.format_spec);
+ break;
+ case JoinedStr_kind:
+ VISIT_SEQ(st, expr, e->v.JoinedStr.values);
+ break;
case Num_kind:
case Str_kind:
case Bytes_kind: