From: Victor Stinner Date: Tue, 18 Feb 2014 21:07:56 +0000 (+0100) Subject: Issue #20625: Fix compilation issue X-Git-Tag: v3.4.0rc2~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6acc5e1330239cd721205b310dfddec1eb6425c1;p=python Issue #20625: Fix compilation issue --- diff --git a/Python/compile.c b/Python/compile.c index 57a232919d..9978eb3a1d 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -1532,8 +1532,9 @@ compiler_visit_argannotation(struct compiler *c, identifier id, 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) {