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 4f45776 commit ccc3d64Copy full SHA for ccc3d64
Python/ceval_macros.h
@@ -359,8 +359,8 @@ do { \
359
stack_pointer = _PyFrame_GetStackPointer(frame); \
360
if (next_instr == NULL) { \
361
/* 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]]; \
+ to after this_instr, not this_instr! */ \
+ next_instr = frame->instr_ptr + 1; \
364
JUMP_TO_LABEL(error); \
365
} \
366
DISPATCH(); \
0 commit comments