diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2023-09-09 02:49:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 02:49:20 (GMT) |
commit | 17f994174de9211b2baaff217eeb1033343230fc (patch) | |
tree | 9fe4978f48c3adf845313f6c18f1f81c1217eac4 /Misc/NEWS.d | |
parent | e9e2ca7a7b4b4320009cdf85c84ec5bd6c4923c3 (diff) | |
download | cpython-17f994174de9211b2baaff217eeb1033343230fc.zip cpython-17f994174de9211b2baaff217eeb1033343230fc.tar.gz cpython-17f994174de9211b2baaff217eeb1033343230fc.tar.bz2 |
gh-109118: Fix runtime crash when NameError happens in PEP 695 function (#109123)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-09-07-18-24-42.gh-issue-109118.yPXRAe.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-09-07-18-24-42.gh-issue-109118.yPXRAe.rst b/Misc/NEWS.d/next/Core and Builtins/2023-09-07-18-24-42.gh-issue-109118.yPXRAe.rst new file mode 100644 index 0000000..f14fce4 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-09-07-18-24-42.gh-issue-109118.yPXRAe.rst @@ -0,0 +1,2 @@ +Fix interpreter crash when a NameError is raised inside the type parameters +of a generic class. |