mirror of
https://github.com/python/cpython.git
synced 2024-11-27 03:45:08 +08:00
gh-113102: Fix typo in INSTRUMENTED_RESUME (GH-114349)
This commit is contained in:
parent
d1b031cc58
commit
2f2ddabd1a
@ -192,7 +192,7 @@ dummy_func(
|
||||
ERROR_IF(err, error);
|
||||
if (frame->instr_ptr != this_instr) {
|
||||
/* Instrumentation has jumped */
|
||||
next_instr = this_instr;
|
||||
next_instr = frame->instr_ptr;
|
||||
DISPATCH();
|
||||
}
|
||||
}
|
||||
|
2
Python/generated_cases.c.h
generated
2
Python/generated_cases.c.h
generated
@ -3156,7 +3156,7 @@
|
||||
if (err) goto error;
|
||||
if (frame->instr_ptr != this_instr) {
|
||||
/* Instrumentation has jumped */
|
||||
next_instr = this_instr;
|
||||
next_instr = frame->instr_ptr;
|
||||
DISPATCH();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user