We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a1aa13 commit cbcd552Copy full SHA for cbcd552
Python/ceval_gil.c
@@ -1022,7 +1022,6 @@ _Py_FinishPendingCalls(PyThreadState *tstate)
1022
#ifndef NDEBUG
1023
int32_t npending_prev = INT32_MAX;
1024
#endif
1025
- int called = 0;
1026
do {
1027
if (make_pending_calls(tstate) < 0) {
1028
PyObject *exc = _PyErr_GetRaisedException(tstate);
@@ -1040,8 +1039,6 @@ _Py_FinishPendingCalls(PyThreadState *tstate)
1040
1039
npending_prev = npending;
1041
1042
} while (npending > 0);
1043
-
1044
- return;
1045
}
1046
1047
int
0 commit comments