]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add missing NEWS entry for gh-140517 (GH-140560)
authorMikhail Efimov <efimov.mikhail@gmail.com>
Fri, 24 Oct 2025 19:53:00 +0000 (22:53 +0300)
committerGitHub <noreply@github.com>
Fri, 24 Oct 2025 19:53:00 +0000 (22:53 +0300)
Misc/NEWS.d/next/Core_and_Builtins/2025-10-24-20-16-42.gh-issue-140517.cqun-K.rst [new file with mode: 0644]

diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2025-10-24-20-16-42.gh-issue-140517.cqun-K.rst b/Misc/NEWS.d/next/Core_and_Builtins/2025-10-24-20-16-42.gh-issue-140517.cqun-K.rst
new file mode 100644 (file)
index 0000000..15aaea8
--- /dev/null
@@ -0,0 +1,3 @@
+Fixed a reference leak when iterating over the result of :func:`map`
+with ``strict=True`` when the input iterables have different lengths.
+Patch by Mikhail Efimov.