diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-22 14:49:13 +0300 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-22 14:49:13 +0300 |
commit | 0811c5d7ba43574d746599c97696e6297382d101 (patch) | |
tree | 71d541b4e8f402b4dd1b18615000b41c3e21296c /Python/symtable.c | |
parent | 3f1701a1fb45743a97205375e0e209c1d6bb6587 (diff) | |
parent | b7666a30933efbbb2e400e6916bba2311340fcd1 (diff) | |
download | cpython-git-0811c5d7ba43574d746599c97696e6297382d101.tar.gz |
Merge 3.5 (Issue #24619)
Diffstat (limited to 'Python/symtable.c')
-rw-r--r-- | Python/symtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/symtable.c b/Python/symtable.c index 354b799678..64910d8a55 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -1542,7 +1542,7 @@ symtable_visit_annotations(struct symtable *st, stmt_ty s, if (a->kwonlyargs && !symtable_visit_argannotations(st, a->kwonlyargs)) return 0; if (returns) - VISIT(st, expr, s->v.FunctionDef.returns); + VISIT(st, expr, returns); return 1; } |