summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-10-03 23:36:52 (GMT)
committerGitHub <noreply@github.com>2022-10-03 23:36:52 (GMT)
commit93fcc1f4133e177882850177c2c047d46019b812 (patch)
tree523560275ae44387a418e9f18c0df6eb2a69993f /Misc
parentd053c47bfde1b3d8779546b980849708662f2660 (diff)
downloadcpython-93fcc1f4133e177882850177c2c047d46019b812.zip
cpython-93fcc1f4133e177882850177c2c047d46019b812.tar.gz
cpython-93fcc1f4133e177882850177c2c047d46019b812.tar.bz2
GH-97752: Clear the `previous` member of newly-created generator/coroutine frames (GH-97795)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-10-03-13-35-48.gh-issue-97752.0xTjJY.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-10-03-13-35-48.gh-issue-97752.0xTjJY.rst b/Misc/NEWS.d/next/Core and Builtins/2022-10-03-13-35-48.gh-issue-97752.0xTjJY.rst
new file mode 100644
index 0000000..c656350
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-10-03-13-35-48.gh-issue-97752.0xTjJY.rst
@@ -0,0 +1,2 @@
+Fix possible data corruption or crashes when accessing the ``f_back`` member
+of newly-created generator or coroutine frames.