summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorPeter Bierma <zintensitydev@gmail.com>2024-11-05 09:56:36 (GMT)
committerGitHub <noreply@github.com>2024-11-05 09:56:36 (GMT)
commit1371295e678f00a7c89dc5bb2ab61ede9adbc094 (patch)
treefee7c410cf08814dae2d2a7963268862ce0b49a8 /Misc/NEWS.d
parent407c0366d9ccd2a36c6cc8bf92324856b16fd604 (diff)
downloadcpython-1371295e678f00a7c89dc5bb2ab61ede9adbc094.zip
cpython-1371295e678f00a7c89dc5bb2ab61ede9adbc094.tar.gz
cpython-1371295e678f00a7c89dc5bb2ab61ede9adbc094.tar.bz2
gh-126366: Fix crash if `__iter__` raises an exception during `yield from` (#126369)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core_and_Builtins/2024-11-03-15-15-36.gh-issue-126366.8BBdGU.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-11-03-15-15-36.gh-issue-126366.8BBdGU.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-11-03-15-15-36.gh-issue-126366.8BBdGU.rst
new file mode 100644
index 0000000..a472336
--- /dev/null
+++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-11-03-15-15-36.gh-issue-126366.8BBdGU.rst
@@ -0,0 +1,2 @@
+Fix crash when using ``yield from`` on an object that raises an exception in
+its ``__iter__``.