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
Address code review
  • Loading branch information
corona10 committed Dec 11, 2025
commit fd2c8e47167c0065149beff3993d4245eaebb6cf
4 changes: 2 additions & 2 deletions Python/bytecodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -4305,10 +4305,10 @@ dummy_func(
if (res_o == NULL) {
ERROR_NO_POP();
}
INPUTS_DEAD();
res = PyStackRef_FromPyObjectSteal(res_o);
a = arg;
c = callable;
INPUTS_DEAD();
res = PyStackRef_FromPyObjectSteal(res_o);
}

op(_GUARD_CALLABLE_ISINSTANCE, (callable, unused, unused, unused -- callable, unused, unused, unused)) {
Expand Down
Loading