diff options
author | Mark Shannon <mark@hotpy.org> | 2023-12-14 14:26:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 14:26:44 +0000 |
commit | 6873555955497e9adbc72fc0e38df5261844aafd (patch) | |
tree | eda67dbe91ff5e80a437343651c78c646b519e8a /Python/bytecodes.c | |
parent | d9e1b5794a8fade21773d18f91a07f80b55c839c (diff) | |
download | cpython-6873555955497e9adbc72fc0e38df5261844aafd.tar.gz cpython-6873555955497e9adbc72fc0e38df5261844aafd.zip |
GH-112354: Treat _EXIT_TRACE like an unconditional side exit (GH-113104)
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 1ae83422730..68bb15c2b53 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -4027,7 +4027,7 @@ dummy_func( op(_EXIT_TRACE, (--)) { TIER_TWO_ONLY - GOTO_TIER_ONE(); + DEOPT_IF(1); } op(_INSERT, (unused[oparg], top -- top, unused[oparg])) { |