From: Pablo Galindo Date: Thu, 5 Dec 2019 16:18:27 +0000 (+0000) Subject: Remove unused variable in Python/pylifecycle.c (GH-17475) X-Git-Tag: v3.9.0a2~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4da44000843824d4231901c3cf28b604e79df456;p=thirdparty%2FPython%2Fcpython.git Remove unused variable in Python/pylifecycle.c (GH-17475) --- diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index d6f65ec3caf6..410156b80211 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -1253,8 +1253,6 @@ finalize_interp_clear(PyThreadState *tstate) { int is_main_interp = _Py_IsMainInterpreter(tstate); - PyInterpreterState *interp = tstate->interp; - /* Clear interpreter state and all thread states */ PyInterpreterState_Clear(tstate->interp);