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 b9c6f4e commit f56c2cfCopy full SHA for f56c2cf
Python/bytecodes.c
@@ -3669,11 +3669,12 @@ dummy_func(
3669
DEOPT_IF(!PyStackRef_IsNull(null));
3670
DEOPT_IF(callable_o != (PyObject *)&PyTuple_Type);
3671
STAT_INC(CALL, hit);
3672
- res = PyStackRef_FromPyObjectSteal(PySequence_Tuple(arg_o));
+ PyObject *res_o = PySequence_Tuple(arg_o);
3673
DEAD(null);
3674
DEAD(callable);
3675
PyStackRef_CLOSE(arg);
3676
- ERROR_IF(PyStackRef_IsNull(res), error);
+ ERROR_IF(res_o == NULL, error);
3677
+ res = PyStackRef_FromPyObjectSteal(res_o);
3678
}
3679
3680
macro(CALL_TUPLE_1) =
0 commit comments