From: Nick Coghlan Date: Sun, 20 Oct 2013 12:43:53 +0000 (+1000) Subject: Close #19313: remove no longer needed Py_XINCREF X-Git-Tag: v3.4.0b1~571^2~50 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6de9200e5716d969b1f4a125eed2fbbb2f3acff7;p=python Close #19313: remove no longer needed Py_XINCREF Eliminates a refleak introduced in commit b4a325275fb0 --- diff --git a/Python/compile.c b/Python/compile.c index eeccd11170..5b23e61ff6 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -707,7 +707,6 @@ compiler_scope_qualname(struct compiler *c, identifier scope_name) goto _error; name = PyUnicode_Join(dot_str, seq); Py_DECREF(seq); - Py_XINCREF(name); return name; _error: