summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2022-09-13 08:25:16 (GMT)
committerGitHub <noreply@github.com>2022-09-13 08:25:16 (GMT)
commit12c5f328d2479ac3432df5e266adc4e59adeabfe (patch)
treecdeb3338ca209b81ae0b4c321b52a0d9b19a762d /Misc
parent1756ffd66a38755cd45de51316d66266ae30e132 (diff)
downloadcpython-12c5f328d2479ac3432df5e266adc4e59adeabfe.zip
cpython-12c5f328d2479ac3432df5e266adc4e59adeabfe.tar.gz
cpython-12c5f328d2479ac3432df5e266adc4e59adeabfe.tar.bz2
GH-96754: Check whether the interpreter frame is complete before creating frame object. (GH-96776)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-09-12-16-58-22.gh-issue-96754.0GRme5.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-09-12-16-58-22.gh-issue-96754.0GRme5.rst b/Misc/NEWS.d/next/Core and Builtins/2022-09-12-16-58-22.gh-issue-96754.0GRme5.rst
new file mode 100644
index 0000000..beac84e
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-09-12-16-58-22.gh-issue-96754.0GRme5.rst
@@ -0,0 +1,3 @@
+Make sure that all frame objects created are created from valid interpreter
+frames. Prevents the possibility of invalid frames in backtraces and signal
+handlers.