From 4da44000843824d4231901c3cf28b604e79df456 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Thu, 5 Dec 2019 16:18:27 +0000 Subject: [PATCH] Remove unused variable in Python/pylifecycle.c (GH-17475) --- Python/pylifecycle.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index d6f65ec3caf..410156b8021 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);