summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2023-09-09 02:49:20 (GMT)
committerGitHub <noreply@github.com>2023-09-09 02:49:20 (GMT)
commit17f994174de9211b2baaff217eeb1033343230fc (patch)
tree9fe4978f48c3adf845313f6c18f1f81c1217eac4 /Misc/NEWS.d
parente9e2ca7a7b4b4320009cdf85c84ec5bd6c4923c3 (diff)
downloadcpython-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.rst2
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.