summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-12-04 12:20:19 (GMT)
committerGitHub <noreply@github.com>2023-12-04 12:20:19 (GMT)
commite3d380ded6efd25d60a21b7eb913142e86153e33 (patch)
treeffb839eb0e0e46254497aa2ff7fdcc8fe675a736 /Misc
parent28afd8ddad8088dc3b251f18020b53b277205e5f (diff)
downloadcpython-e3d380ded6efd25d60a21b7eb913142e86153e33.zip
cpython-e3d380ded6efd25d60a21b7eb913142e86153e33.tar.gz
cpython-e3d380ded6efd25d60a21b7eb913142e86153e33.tar.bz2
[3.11] gh-109786: Fix leaks and crash when re-enter itertools.pairwise.__next__() (GH-109788) (GH-112700)
(cherry picked from commit 6ca9d3e0173c38e2eac50367b187d4c1d43f9892) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-09-23-14-40-51.gh-issue-109786.UX3pKv.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-09-23-14-40-51.gh-issue-109786.UX3pKv.rst b/Misc/NEWS.d/next/Library/2023-09-23-14-40-51.gh-issue-109786.UX3pKv.rst
new file mode 100644
index 0000000..07222fa
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-09-23-14-40-51.gh-issue-109786.UX3pKv.rst
@@ -0,0 +1,2 @@
+Fix possible reference leaks and crash when re-enter the ``__next__()`` method of
+:class:`itertools.pairwise`.