bpo-29548: no longer use PyEval_Call* functions (GH-14683)

This commit is contained in:
Jeroen Demeyer 2019-07-11 17:57:32 +02:00 committed by Inada Naoki
parent 9b5ce62cac
commit 1dbd084f1f
4 changed files with 14 additions and 6 deletions

View file

@ -1667,8 +1667,7 @@ _PyErr_CheckSignals(void)
_Py_atomic_store_relaxed(&Handlers[i].tripped, 0);
if (arglist) {
result = PyEval_CallObject(Handlers[i].func,
arglist);
result = PyObject_Call(Handlers[i].func, arglist, NULL);
Py_DECREF(arglist);
}
if (!result) {