From: Pablo Galindo Date: Tue, 10 Sep 2019 13:32:54 +0000 (+0100) Subject: bpo-38090: Fix reference leak in ceval.c (GH-15848) X-Git-Tag: v3.9.0a1~600 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a511c7a4961a684db1f8d0ed438822d87d7d3dcf;p=thirdparty%2FPython%2Fcpython.git bpo-38090: Fix reference leak in ceval.c (GH-15848) --- diff --git a/Python/ceval.c b/Python/ceval.c index d280d7977607..01e2a1b9666f 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -5235,7 +5235,6 @@ import_from(PyThreadState *tstate, PyObject *v, PyObject *name) else { _Py_IDENTIFIER(__spec__); PyObject *spec = _PyObject_GetAttrId(v, &PyId___spec__); - Py_XINCREF(spec); const char *fmt = _PyModuleSpec_IsInitializing(spec) ? "cannot import name %R from partially initialized module %R "