diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2019-12-05 16:18:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-05 16:18:27 (GMT) |
commit | 4da44000843824d4231901c3cf28b604e79df456 (patch) | |
tree | 57a380bb85b491cd65f5147e4e635d59ef07c072 | |
parent | 1f9f69dd4c5ee232c0b2f782933a89359932a67f (diff) | |
download | cpython-4da44000843824d4231901c3cf28b604e79df456.zip cpython-4da44000843824d4231901c3cf28b604e79df456.tar.gz cpython-4da44000843824d4231901c3cf28b604e79df456.tar.bz2 |
Remove unused variable in Python/pylifecycle.c (GH-17475)
-rw-r--r-- | Python/pylifecycle.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index d6f65ec..410156b 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); |