summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorSayandip Dutta <sayandip199309@gmail.com>2024-11-12 13:11:58 (GMT)
committerGitHub <noreply@github.com>2024-11-12 13:11:58 (GMT)
commitabb90ba46c597a1b192027e914ad312dd62d2462 (patch)
treeaead09786185ca070d9f05c6ea4d91b772830ef2 /Misc/NEWS.d
parent6e3bb8a91380ba98d704f2dca8e98923c0abc8a8 (diff)
downloadcpython-abb90ba46c597a1b192027e914ad312dd62d2462.zip
cpython-abb90ba46c597a1b192027e914ad312dd62d2462.tar.gz
cpython-abb90ba46c597a1b192027e914ad312dd62d2462.tar.bz2
gh-125916: Allow functools.reduce() 'initial' to be a keyword argument (#125917)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-10-24-13-40-20.gh-issue-126916.MAgz6D.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-10-24-13-40-20.gh-issue-126916.MAgz6D.rst b/Misc/NEWS.d/next/Library/2024-10-24-13-40-20.gh-issue-126916.MAgz6D.rst
new file mode 100644
index 0000000..cbe2fc1
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-10-24-13-40-20.gh-issue-126916.MAgz6D.rst
@@ -0,0 +1,2 @@
+Allow the *initial* parameter of :func:`functools.reduce` to be passed as a keyword argument.
+Patch by Sayandip Dutta.