diff options
author | Carl Meyer <carl@oddbird.net> | 2023-09-07 14:56:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 14:56:43 (GMT) |
commit | f2584eade378910b9ea18072bb1dab3dd58e23bb (patch) | |
tree | 5e7a43ea324938f916109e766c3077754ca52c32 /Misc/NEWS.d | |
parent | b72251de930c8ec6893f1b3f6fdf1640cc17dfed (diff) | |
download | cpython-f2584eade378910b9ea18072bb1dab3dd58e23bb.zip cpython-f2584eade378910b9ea18072bb1dab3dd58e23bb.tar.gz cpython-f2584eade378910b9ea18072bb1dab3dd58e23bb.tar.bz2 |
gh-108732: include comprehension locals in frame.f_locals (#109026)
Co-authored-by: Radislav Chugunov <52372310+chgnrdv@users.noreply.github.com>
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-09-06-13-28-42.gh-issue-108732.I6DkEQ.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-09-06-13-28-42.gh-issue-108732.I6DkEQ.rst b/Misc/NEWS.d/next/Core and Builtins/2023-09-06-13-28-42.gh-issue-108732.I6DkEQ.rst new file mode 100644 index 0000000..94a143b --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-09-06-13-28-42.gh-issue-108732.I6DkEQ.rst @@ -0,0 +1,2 @@ +Make iteration variables of module- and class-scoped comprehensions visible +to pdb and other tools that use ``frame.f_locals`` again. |