diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-06-07 22:01:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-07 22:01:20 (GMT) |
commit | 3be7e91d037059dd98c175f48620191b538b9731 (patch) | |
tree | 7f9c1b19235cab66fd6b9424209ff5a30ff85993 /Misc | |
parent | 6238174e47a046dd6feb09ef4dd1bb55605ea0ad (diff) | |
download | cpython-3be7e91d037059dd98c175f48620191b538b9731.zip cpython-3be7e91d037059dd98c175f48620191b538b9731.tar.gz cpython-3be7e91d037059dd98c175f48620191b538b9731.tar.bz2 |
[3.13] gh-120225: fix crash in compiler on empty block at end of exception handler (GH-120235) (#120249)
gh-120225: fix crash in compiler on empty block at end of exception handler (GH-120235)
(cherry picked from commit 4fc82b6d3b99f873179937215833e7a573ca7876)
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-06-07-16-09-04.gh-issue-120225.kuYf9t.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-06-07-16-09-04.gh-issue-120225.kuYf9t.rst b/Misc/NEWS.d/next/Core and Builtins/2024-06-07-16-09-04.gh-issue-120225.kuYf9t.rst new file mode 100644 index 0000000..d00b9aa --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2024-06-07-16-09-04.gh-issue-120225.kuYf9t.rst @@ -0,0 +1 @@ +Fix crash in compiler on empty block at end of exception handler. |