summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2020-06-04 12:23:35 (GMT)
committerGitHub <noreply@github.com>2020-06-04 12:23:35 (GMT)
commit50a48dad5579d67d7cae350f6ad5ae5c33f56abb (patch)
treecaba0849e1ea3e65a0f6c3cd933d5b4a6bd21138 /Misc
parent6e23a9c82b7fd2366003b9191cd93a9683b9d80c (diff)
downloadcpython-50a48dad5579d67d7cae350f6ad5ae5c33f56abb.zip
cpython-50a48dad5579d67d7cae350f6ad5ae5c33f56abb.tar.gz
cpython-50a48dad5579d67d7cae350f6ad5ae5c33f56abb.tar.bz2
Don't raise an exception on normal return from generator. (GH-19473)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-04-11-13-07-49.bpo-4022.Ctpn_F.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-04-11-13-07-49.bpo-4022.Ctpn_F.rst b/Misc/NEWS.d/next/Core and Builtins/2020-04-11-13-07-49.bpo-4022.Ctpn_F.rst
new file mode 100644
index 0000000..a13a8e8
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-04-11-13-07-49.bpo-4022.Ctpn_F.rst
@@ -0,0 +1 @@
+Improve performance of generators by not raising internal StopIteration.