diff options
author | Tian Gao <gaogaotiantian@hotmail.com> | 2024-05-04 11:12:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 11:12:10 (GMT) |
commit | b034f14a4b6e9197d3926046721b8b4b4b4f5b3d (patch) | |
tree | 2d641189f3401526d264d13e5b855c576c29dc63 /Misc | |
parent | 1ab6356ebec25f216a0eddbd81225abcb93f2d55 (diff) | |
download | cpython-b034f14a4b6e9197d3926046721b8b4b4b4f5b3d.zip cpython-b034f14a4b6e9197d3926046721b8b4b4b4f5b3d.tar.gz cpython-b034f14a4b6e9197d3926046721b8b4b4b4f5b3d.tar.bz2 |
gh-74929: Implement PEP 667 (GH-115153)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-04-27-21-44-40.gh-issue-74929.C2nESp.rst | 1 | ||||
-rw-r--r-- | Misc/stable_abi.toml | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-04-27-21-44-40.gh-issue-74929.C2nESp.rst b/Misc/NEWS.d/next/Core and Builtins/2024-04-27-21-44-40.gh-issue-74929.C2nESp.rst new file mode 100644 index 0000000..46e628f --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2024-04-27-21-44-40.gh-issue-74929.C2nESp.rst @@ -0,0 +1 @@ +Implement PEP 667 - converted ``frame.f_locals`` to a write through proxy diff --git a/Misc/stable_abi.toml b/Misc/stable_abi.toml index 5c29e98..7747366 100644 --- a/Misc/stable_abi.toml +++ b/Misc/stable_abi.toml @@ -2501,3 +2501,9 @@ added = '3.13' [function.PyType_GetModuleByDef] added = '3.13' +[function.PyEval_GetFrameBuiltins] + added = '3.13' +[function.PyEval_GetFrameGlobals] + added = '3.13' +[function.PyEval_GetFrameLocals] + added = '3.13' |