summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-08-02 17:44:20 (GMT)
committerGitHub <noreply@github.com>2023-08-02 17:44:20 (GMT)
commit0d30a5a40968cce19750be78154232fae25d641f (patch)
treee6bc0cbcda38de59e6306524b247e5f6866f75be /Misc
parentdd693d6320feeca887174fa592537669d017ca9b (diff)
downloadcpython-0d30a5a40968cce19750be78154232fae25d641f.zip
cpython-0d30a5a40968cce19750be78154232fae25d641f.tar.gz
cpython-0d30a5a40968cce19750be78154232fae25d641f.tar.bz2
GH-100964: Break cycles involving exception state when returning from generator (GH-107563)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-07-30-18-05-11.gh-issue-100964.HluhBJ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-07-30-18-05-11.gh-issue-100964.HluhBJ.rst b/Misc/NEWS.d/next/Core and Builtins/2023-07-30-18-05-11.gh-issue-100964.HluhBJ.rst
new file mode 100644
index 0000000..99ebc92
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-07-30-18-05-11.gh-issue-100964.HluhBJ.rst
@@ -0,0 +1,2 @@
+Clear generators' exception state after ``return`` to break reference
+cycles.