diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-10 23:15:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-10 23:15:54 (GMT) |
commit | 93ef7aa03c64a97d8615ad3975083392ad07b379 (patch) | |
tree | 78e39cc2ec05fc13af5492d71a4618ddc762df9a /Misc | |
parent | 7dc9e923d1a33f40b94f535f9ccfdb9894a4ceb0 (diff) | |
download | cpython-93ef7aa03c64a97d8615ad3975083392ad07b379.zip cpython-93ef7aa03c64a97d8615ad3975083392ad07b379.tar.gz cpython-93ef7aa03c64a97d8615ad3975083392ad07b379.tar.bz2 |
[3.13] gh-118921: Add `copy()` method for `FrameLocalsProxy` (GH-118923) (#118933)
(cherry picked from commit 35c436186b849f8f2f9fb866c59015c9d034d448)
Co-authored-by: Tian Gao <gaogaotiantian@hotmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-05-10-19-54-18.gh-issue-118921.O4ztZG.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-05-10-19-54-18.gh-issue-118921.O4ztZG.rst b/Misc/NEWS.d/next/Core and Builtins/2024-05-10-19-54-18.gh-issue-118921.O4ztZG.rst new file mode 100644 index 0000000..39ccf47 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2024-05-10-19-54-18.gh-issue-118921.O4ztZG.rst @@ -0,0 +1 @@ +Add ``copy()`` method for ``FrameLocalsProxy`` which returns a snapshot ``dict`` for local variables. |