Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix review idea
Signed-off-by: Manjusaka <[email protected]>
  • Loading branch information
Zheaoli committed Dec 11, 2025
commit 5636c727b234198935739068c7cb3596a71d9a89
2 changes: 1 addition & 1 deletion Python/bytecodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -4060,9 +4060,9 @@ dummy_func(

assert(oparg == 1);
STAT_INC(CALL, hit);
INPUTS_DEAD();
PyObject *res_o = PyObject_Str(arg_o);
a = arg;
INPUTS_DEAD();
ERROR_IF(res_o == NULL);
res = PyStackRef_FromPyObjectSteal(res_o);
}
Expand Down