diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2023-01-08 19:38:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-08 19:38:24 (GMT) |
commit | b139bcd8922b47bf77c75d5f6704cc9147852546 (patch) | |
tree | 4bcae8719aa3922a68eca29fc9c52845a50290f5 /Doc/whatsnew | |
parent | 11f99323c2ae0ec428c370a335695e3d8d4afc1d (diff) | |
download | cpython-b139bcd8922b47bf77c75d5f6704cc9147852546.zip cpython-b139bcd8922b47bf77c75d5f6704cc9147852546.tar.gz cpython-b139bcd8922b47bf77c75d5f6704cc9147852546.tar.bz2 |
GH-100485: Tweaks to sumprod() (GH-100857)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 2f50ece..b882bb6 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -262,6 +262,12 @@ dis :data:`~dis.hasarg` collection instead. (Contributed by Irit Katriel in :gh:`94216`.) +math +---- + +* Added :func:`math.sumprod` for computing a sum of products. + (Contributed by Raymond Hettinger in :gh:`100485`.) + os -- |