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 1942e6a commit fd5c844Copy full SHA for fd5c844
1 file changed
Python/bytecodes.c
@@ -4206,10 +4206,12 @@ dummy_func(
4206
PyObject *res_o = _PyCFunction_TrampolineCall(cfunc, PyCFunction_GET_SELF(callable_o), PyStackRef_AsPyObjectBorrow(arg));
4207
_Py_LeaveRecursiveCallTstate(tstate);
4208
assert((res_o != NULL) ^ (_PyErr_Occurred(tstate) != NULL));
4209
+ if (res_o == NULL) {
4210
+ ERROR_NO_POP();
4211
+ }
4212
a = arg;
4213
c = callable;
4214
INPUTS_DEAD();
- ERROR_IF(res_o == NULL);
4215
res = PyStackRef_FromPyObjectSteal(res_o);
4216
}
4217
0 commit comments