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 fe398ba commit 1a195c6Copy full SHA for 1a195c6
Python/bytecodes.c
@@ -3629,11 +3629,12 @@ dummy_func(
3629
DEOPT_IF(!PyStackRef_IsNull(null));
3630
DEOPT_IF(callable_o != (PyObject *)&PyUnicode_Type);
3631
STAT_INC(CALL, hit);
3632
- res = PyStackRef_FromPyObjectSteal(PyObject_Str(arg_o));
+ PyObject *res_o = PyObject_Str(arg_o);
3633
DEAD(null);
3634
DEAD(callable);
3635
PyStackRef_CLOSE(arg);
3636
- ERROR_IF(PyStackRef_IsNull(res), error);
+ ERROR_IF(res_o == NULL, error);
3637
+ res = PyStackRef_FromPyObjectSteal(res_o);
3638
}
3639
3640
macro(CALL_STR_1) =
0 commit comments