summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2023-07-05 23:05:02 (GMT)
committerGitHub <noreply@github.com>2023-07-05 23:05:02 (GMT)
commit104d7b760fed18055e4f04e5da3ca619e28bfc81 (patch)
treea193506aff9bf86f46c51db47cd6cd9d74875714 /Misc
parent838406b4fc044c0b2f397c23275c69f16a76205b (diff)
downloadcpython-104d7b760fed18055e4f04e5da3ca619e28bfc81.zip
cpython-104d7b760fed18055e4f04e5da3ca619e28bfc81.tar.gz
cpython-104d7b760fed18055e4f04e5da3ca619e28bfc81.tar.bz2
gh-105340: include hidden fast-locals in locals() (#105715)
* gh-105340: include hidden fast-locals in locals()
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-06-12-16-38-31.gh-issue-105340._jRHXe.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-06-12-16-38-31.gh-issue-105340._jRHXe.rst b/Misc/NEWS.d/next/Core and Builtins/2023-06-12-16-38-31.gh-issue-105340._jRHXe.rst
new file mode 100644
index 0000000..f6d4fa8
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-06-12-16-38-31.gh-issue-105340._jRHXe.rst
@@ -0,0 +1,2 @@
+Include the comprehension iteration variable in ``locals()`` inside a
+module- or class-scope comprehension.