Skip to content

Commit ccc3d64

Browse files
Apply suggestions
1 parent 4f45776 commit ccc3d64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/ceval_macros.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@ do { \
359359
stack_pointer = _PyFrame_GetStackPointer(frame); \
360360
if (next_instr == NULL) { \
361361
/* gh-140104: The exception handler expects frame->instr_ptr
362-
to be pointing to next_instr, not this_instr! */ \
363-
next_instr = frame->instr_ptr + 1 + _PyOpcode_Caches[_PyOpcode_Deopt[frame->instr_ptr->op.code]]; \
362+
to after this_instr, not this_instr! */ \
363+
next_instr = frame->instr_ptr + 1; \
364364
JUMP_TO_LABEL(error); \
365365
} \
366366
DISPATCH(); \

0 commit comments

Comments
 (0)