aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/generated_cases.c.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2024-01-22 03:56:28 -0800
committerGitHub <noreply@github.com>2024-01-22 11:56:28 +0000
commit2f2ddabd1a02e3095b751100b94b529e4e0bcd20 (patch)
treefbc9e0af96b6f95d027cb9042f519e5294f63718 /Python/generated_cases.c.h
parentd1b031cc58516e1aba823fd613528417a996f50d (diff)
downloadcpython-2f2ddabd1a02e3095b751100b94b529e4e0bcd20.tar.gz
cpython-2f2ddabd1a02e3095b751100b94b529e4e0bcd20.zip
gh-113102: Fix typo in INSTRUMENTED_RESUME (GH-114349)
Diffstat (limited to 'Python/generated_cases.c.h')
-rw-r--r--Python/generated_cases.c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h
index 68468728d44..c4bb3aeec5e 100644
--- a/Python/generated_cases.c.h
+++ b/Python/generated_cases.c.h
@@ -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();
}
}