gh-113102: Fix typo in INSTRUMENTED_RESUME (GH-114349)

This commit is contained in:
Guido van Rossum 2024-01-22 03:56:28 -08:00 committed by GitHub
parent d1b031cc58
commit 2f2ddabd1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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();
} }
} }

View File

@ -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();
} }
} }