diff options
author | Mark Shannon <mark@hotpy.org> | 2023-08-02 17:44:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 17:44:20 (GMT) |
commit | 0d30a5a40968cce19750be78154232fae25d641f (patch) | |
tree | e6bc0cbcda38de59e6306524b247e5f6866f75be /Misc | |
parent | dd693d6320feeca887174fa592537669d017ca9b (diff) | |
download | cpython-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.rst | 2 |
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. |