summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2021-11-22 14:01:23 (GMT)
committerGitHub <noreply@github.com>2021-11-22 14:01:23 (GMT)
commit7fd92a8b7ee5bed28c2681fa38e0a1e76200dd8e (patch)
tree46c7f7aed9809c9a7d5f6b6a50eb151b1e2e8a38 /Misc
parentd9cedabeba0d87799f99c0717e81743a1c2d34ce (diff)
downloadcpython-7fd92a8b7ee5bed28c2681fa38e0a1e76200dd8e.zip
cpython-7fd92a8b7ee5bed28c2681fa38e0a1e76200dd8e.tar.gz
cpython-7fd92a8b7ee5bed28c2681fa38e0a1e76200dd8e.tar.bz2
bpo-45813: Make sure that frame->generator is NULLed when generator is deallocated. (GH-29700)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-11-22-11-28-13.bpo-45813.ZMaWE2.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-11-22-11-28-13.bpo-45813.ZMaWE2.rst b/Misc/NEWS.d/next/Core and Builtins/2021-11-22-11-28-13.bpo-45813.ZMaWE2.rst
new file mode 100644
index 0000000..65f64b11
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-11-22-11-28-13.bpo-45813.ZMaWE2.rst
@@ -0,0 +1 @@
+Fix crash when calling coro.cr_frame.clear() after coroutine has been freed.