Skip to content

Commit 2378caa

Browse files
committed
Remove runtime variable
1 parent b595153 commit 2378caa

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Python/ceval.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2343,7 +2343,6 @@ PyEval_SetProfileAllThreads(Py_tracefunc func, PyObject *arg)
23432343
PyThreadState *this_tstate = _PyThreadState_GET();
23442344
PyInterpreterState *interp = this_tstate->interp;
23452345

2346-
_PyRuntimeState *runtime = &_PyRuntime;
23472346
INTERP_THREAD_LOCK(interp);
23482347
PyThreadState* ts = PyInterpreterState_ThreadHead(interp);
23492348
INTERP_THREAD_UNLOCK(interp);
@@ -2374,7 +2373,6 @@ PyEval_SetTraceAllThreads(Py_tracefunc func, PyObject *arg)
23742373
PyThreadState *this_tstate = _PyThreadState_GET();
23752374
PyInterpreterState *interp = this_tstate->interp;
23762375

2377-
_PyRuntimeState *runtime = &_PyRuntime;
23782376
INTERP_THREAD_LOCK(interp);
23792377
PyThreadState* ts = PyInterpreterState_ThreadHead(interp);
23802378
INTERP_THREAD_UNLOCK(interp);

0 commit comments

Comments
 (0)