diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-07-09 01:52:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-09 01:52:26 (GMT) |
commit | 8a285df806816805484fed36dce5fd5b77a215a6 (patch) | |
tree | 1316ddfdbdeb547a7964106ac5f3a432bb957687 /Misc/NEWS.d | |
parent | 4bed0db7c222f8df1b4e31107c0305214caf3f56 (diff) | |
download | cpython-8a285df806816805484fed36dce5fd5b77a215a6.zip cpython-8a285df806816805484fed36dce5fd5b77a215a6.tar.gz cpython-8a285df806816805484fed36dce5fd5b77a215a6.tar.bz2 |
GH-93252: Fix error handling for failed Python calls (GH-94693)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-07-08-11-44-45.gh-issue-93252.i2358c.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-07-08-11-44-45.gh-issue-93252.i2358c.rst b/Misc/NEWS.d/next/Core and Builtins/2022-07-08-11-44-45.gh-issue-93252.i2358c.rst new file mode 100644 index 0000000..1cc2d85 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-07-08-11-44-45.gh-issue-93252.i2358c.rst @@ -0,0 +1,2 @@ +Fix an issue that caused internal frames to outlive failed Python function +calls, possibly resulting in memory leaks or hard interpreter crashes. |