8000 Correct comment on deoptimize · python/cpython@934a115 · GitHub
[go: up one dir, main page]

Skip to content

Commit 934a115

Browse files
committed
Correct comment on deoptimize
1 parent c54daef commit 934a115

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10731073

10741074
// Jump here from DEOPT_IF()
10751075
deoptimize:
1076-
// On DEOPT_IF we must repeat the last instruction.
1076+
// On DEOPT_IF we must execute the target instruction.
10771077
// This presumes nothing was popped from the stack (nor pushed).
10781078
// There are some other things to take care of first, though.
10791079
frame->instr_ptr = next_uop[-1].target + _PyCode_CODE(_PyFrame_GetCode(frame));

0 commit comments

Comments
 (0)
0