diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-09-22 16:16:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-22 16:16:52 (GMT) |
commit | 8fd2c3b75b90c4ee391894aa5094615bbdb6242f (patch) | |
tree | a6291ee3fc549c5bb21de9c307321caae317d98f /Misc | |
parent | ec403536f1e4cb8ea3519bea43a5fb230ab374f4 (diff) | |
download | cpython-8fd2c3b75b90c4ee391894aa5094615bbdb6242f.zip cpython-8fd2c3b75b90c4ee391894aa5094615bbdb6242f.tar.gz cpython-8fd2c3b75b90c4ee391894aa5094615bbdb6242f.tar.bz2 |
GH-96975: Skip incomplete frames in PyEval_GetFrame (GH-97003)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-09-21-16-06-37.gh-issue-96975.BmE0XY.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-09-21-16-06-37.gh-issue-96975.BmE0XY.rst b/Misc/NEWS.d/next/Core and Builtins/2022-09-21-16-06-37.gh-issue-96975.BmE0XY.rst new file mode 100644 index 0000000..e6fcb84 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-09-21-16-06-37.gh-issue-96975.BmE0XY.rst @@ -0,0 +1,2 @@ +Fix a crash occurring when :c:func:`PyEval_GetFrame` is called while the +topmost Python frame is in a partially-initialized state. |