summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-10 04:37:28 (GMT)
committerGitHub <noreply@github.com>2024-06-10 04:37:28 (GMT)
commit03cd44759f8e5faaa154628e196860255d87bddd (patch)
tree1722f2ad13b2a1305dd6e2abd78571d4b27e7f4a /Misc
parentc15f94d6fbc960790db34c94d49716658ccf6348 (diff)
downloadcpython-03cd44759f8e5faaa154628e196860255d87bddd.zip
cpython-03cd44759f8e5faaa154628e196860255d87bddd.tar.gz
cpython-03cd44759f8e5faaa154628e196860255d87bddd.tar.bz2
[3.13] gh-119666: fix multiple class-scope comprehensions referencing __class__ (GH-120295) (#120299)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2024-06-09-19-13-38.gh-issue-119666.S0G4rZ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-06-09-19-13-38.gh-issue-119666.S0G4rZ.rst b/Misc/NEWS.d/next/Core and Builtins/2024-06-09-19-13-38.gh-issue-119666.S0G4rZ.rst
new file mode 100644
index 0000000..09c1f55
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2024-06-09-19-13-38.gh-issue-119666.S0G4rZ.rst
@@ -0,0 +1 @@
+Fix a compiler crash in the case where two comprehensions in class scope both reference ``__class__``.