diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-12 13:50:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-12 13:50:29 (GMT) |
commit | d533ab17ec37b457a5cc286f30c7559e358492bf (patch) | |
tree | 2260c776dd98ec4e61519099c2b82169fdabe092 /Misc/NEWS.d/next | |
parent | af83d1e8214efc806488226d206c24462686bd1d (diff) | |
download | cpython-d533ab17ec37b457a5cc286f30c7559e358492bf.zip cpython-d533ab17ec37b457a5cc286f30c7559e358492bf.tar.gz cpython-d533ab17ec37b457a5cc286f30c7559e358492bf.tar.bz2 |
[3.12] gh-108732: include comprehension locals in frame.f_locals (GH-109026) (#109097)
gh-108732: include comprehension locals in frame.f_locals (GH-109026)
(cherry picked from commit f2584eade378910b9ea18072bb1dab3dd58e23bb)
Co-authored-by: Carl Meyer <carl@oddbird.net>
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/next')
-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. |