From: Hai Shi Date: Sat, 13 Jun 2020 06:58:12 +0000 (+0800) Subject: Remove redundant var in PyErr_NewException() (GH-20850) X-Git-Tag: v3.10.0a1~634 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c209e3b53b6929747fe3b79398bfbaeabb72d92;p=thirdparty%2FPython%2Fcpython.git Remove redundant var in PyErr_NewException() (GH-20850) --- diff --git a/Python/errors.c b/Python/errors.c index 5d1725679c4b..cc00ae4a5407 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -1079,7 +1079,6 @@ PyErr_NewException(const char *name, PyObject *base, PyObject *dict) { PyThreadState *tstate = _PyThreadState_GET(); PyObject *modulename = NULL; - PyObject *classname = NULL; PyObject *mydict = NULL; PyObject *bases = NULL; PyObject *result = NULL; @@ -1125,7 +1124,6 @@ PyErr_NewException(const char *name, PyObject *base, PyObject *dict) failure: Py_XDECREF(bases); Py_XDECREF(mydict); - Py_XDECREF(classname); Py_XDECREF(modulename); return result; }