summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-02-18 12:49:41 -0500
committerYury Selivanov <yselivanov@sprymix.com>2014-02-18 12:49:41 -0500
commit34ce99f66db84cabaaee04878e30aa8850518ce5 (patch)
tree3af6ed3869a6324c7a5014eef17658f9b097dca5 /Python
parentb59e4425d5476117b77db6a6ee9561f56b8a252a (diff)
downloadcpython-git-34ce99f66db84cabaaee04878e30aa8850518ce5.tar.gz
Mangle __parameters in __annotations__ dict properly. Issue #20625.
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index a7ddc5a11a..57a232919d 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -1533,8 +1533,14 @@ compiler_visit_argannotation(struct compiler *c, identifier id,
{
if (annotation) {
VISIT(c, expr, annotation);
- if (PyList_Append(names, id))
+ PyObject *mangled = _Py_Mangle(c->u->u_private, id);
+ if (!mangled)
return -1;
+ if (PyList_Append(names, mangled) < 0) {
+ Py_DECREF(mangled);
+ return -1;
+ }
+ Py_DECREF(mangled);
}
return 0;
}