diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-09-22 17:17:53 (GMT) |
---|---|---|
committer | Pablo Galindo <pablogsal@gmail.com> | 2022-10-22 19:09:00 (GMT) |
commit | 154b3cd751642b6f21a090ad548785bfa1cbc686 (patch) | |
tree | 8a9aedde06d07834b35b7f0fbfa6812ecf8e7f4c /Misc | |
parent | 886fd3938bb911250ce114b6f6ea2a0edf917a1f (diff) | |
download | cpython-154b3cd751642b6f21a090ad548785bfa1cbc686.zip cpython-154b3cd751642b6f21a090ad548785bfa1cbc686.tar.gz cpython-154b3cd751642b6f21a090ad548785bfa1cbc686.tar.bz2 |
GH-96975: Skip incomplete frames in PyEval_GetFrame (GH-97018)
(cherry picked from commit 8fd2c3b75b90c4ee391894aa5094615bbdb6242f)
Co-authored-by: Brandt Bucher <brandtbucher@microsoft.com>
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. |