commit | 6acc5e1330239cd721205b310dfddec1eb6425c1 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Tue Feb 18 22:07:56 2014 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Tue Feb 18 22:07:56 2014 +0100 |
tree | 3276ad2e47a3a0eea76e252f6d055d55146bd16a | |
parent | dc87052c0cf2afcdbd8ecbd60077a863b295b719 [diff] |
Issue #20625: Fix compilation issue
diff --git a/Python/compile.c b/Python/compile.c index 57a2329..9978eb3 100644 --- a/Python/compile.c +++ b/Python/compile.c
@@ -1532,8 +1532,9 @@ expr_ty annotation, PyObject *names) { if (annotation) { + PyObject *mangled; VISIT(c, expr, annotation); - PyObject *mangled = _Py_Mangle(c->u->u_private, id); + mangled = _Py_Mangle(c->u->u_private, id); if (!mangled) return -1; if (PyList_Append(names, mangled) < 0) {