diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-06-18 22:34:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 22:34:07 (GMT) |
commit | 50fa775e6821b8b242f5709c36c62e7c4fb2c522 (patch) | |
tree | 80a3d0ecf3676db3d64ebb7f591ca027154839dd /Misc | |
parent | 07145ddf19bc423e83d0290095833bc95861fc2f (diff) | |
download | cpython-50fa775e6821b8b242f5709c36c62e7c4fb2c522.zip cpython-50fa775e6821b8b242f5709c36c62e7c4fb2c522.tar.gz cpython-50fa775e6821b8b242f5709c36c62e7c4fb2c522.tar.bz2 |
[3.13] gh-120367: fix bug where compiler detects redundant jump after pseudo op replacement (GH-120714) (#120716)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-06-18-21-34-30.gh-issue-120367.zDwffP.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-06-18-21-34-30.gh-issue-120367.zDwffP.rst b/Misc/NEWS.d/next/Core and Builtins/2024-06-18-21-34-30.gh-issue-120367.zDwffP.rst new file mode 100644 index 0000000..087640e --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2024-06-18-21-34-30.gh-issue-120367.zDwffP.rst @@ -0,0 +1 @@ +Fix bug where compiler creates a redundant jump during pseudo-op replacement. Can only happen with a synthetic AST that has a try on the same line as the instruction following the exception handler. |