diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2019-12-05 16:18:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-05 16:18:27 +0000 |
commit | 4da44000843824d4231901c3cf28b604e79df456 (patch) | |
tree | 57a380bb85b491cd65f5147e4e635d59ef07c072 /Python/pylifecycle.c | |
parent | 1f9f69dd4c5ee232c0b2f782933a89359932a67f (diff) | |
download | cpython-git-4da44000843824d4231901c3cf28b604e79df456.tar.gz |
Remove unused variable in Python/pylifecycle.c (GH-17475)
Diffstat (limited to 'Python/pylifecycle.c')
-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 d6f65ec3ca..410156b802 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); |