mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
gh-113102: Fix typo in INSTRUMENTED_RESUME (GH-114349)
This commit is contained in:
parent
d1b031cc58
commit
2f2ddabd1a
2 changed files with 2 additions and 2 deletions
|
@ -192,7 +192,7 @@ dummy_func(
|
||||||
ERROR_IF(err, error);
|
ERROR_IF(err, error);
|
||||||
if (frame->instr_ptr != this_instr) {
|
if (frame->instr_ptr != this_instr) {
|
||||||
/* Instrumentation has jumped */
|
/* Instrumentation has jumped */
|
||||||
next_instr = this_instr;
|
next_instr = frame->instr_ptr;
|
||||||
DISPATCH();
|
DISPATCH();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
2
Python/generated_cases.c.h
generated
2
Python/generated_cases.c.h
generated
|
@ -3156,7 +3156,7 @@
|
||||||
if (err) goto error;
|
if (err) goto error;
|
||||||
if (frame->instr_ptr != this_instr) {
|
if (frame->instr_ptr != this_instr) {
|
||||||
/* Instrumentation has jumped */
|
/* Instrumentation has jumped */
|
||||||
next_instr = this_instr;
|
next_instr = frame->instr_ptr;
|
||||||
DISPATCH();
|
DISPATCH();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue