summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.14.rst
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 /Doc/whatsnew/3.14.rst
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 'Doc/whatsnew/3.14.rst')
-rw-r--r--Doc/whatsnew/3.14.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst
index 9c03263..66f8c432 100644
--- a/Doc/whatsnew/3.14.rst
+++ b/Doc/whatsnew/3.14.rst
@@ -320,6 +320,11 @@ functools
to reserve a place for positional arguments.
(Contributed by Dominykas Grigonis in :gh:`119127`.)
+* Allow the *initial* parameter of :func:`functools.reduce` to be passed
+ as a keyword argument.
+ (Contributed by Sayandip Dutta in :gh:`125916`.)
+
+
getopt
------