diff options
author | Sayandip Dutta <sayandip199309@gmail.com> | 2024-11-12 13:11:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-12 13:11:58 (GMT) |
commit | abb90ba46c597a1b192027e914ad312dd62d2462 (patch) | |
tree | aead09786185ca070d9f05c6ea4d91b772830ef2 /Doc/whatsnew/3.14.rst | |
parent | 6e3bb8a91380ba98d704f2dca8e98923c0abc8a8 (diff) | |
download | cpython-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.rst | 5 |
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 ------ |