diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2023-01-07 18:46:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-07 18:46:35 (GMT) |
commit | 47b9f83a83db288c652e43567c7b0f74d87a29be (patch) | |
tree | cb4fde0440b01f79852ef45e1a2a2fe22ba6daca /Misc | |
parent | deaf090699a7312cccb0637409f44de3f382389b (diff) | |
download | cpython-47b9f83a83db288c652e43567c7b0f74d87a29be.zip cpython-47b9f83a83db288c652e43567c7b0f74d87a29be.tar.gz cpython-47b9f83a83db288c652e43567c7b0f74d87a29be.tar.bz2 |
GH-100485: Add math.sumprod() (GH-100677)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-01-01-21-54-46.gh-issue-100485.geNrHS.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-01-01-21-54-46.gh-issue-100485.geNrHS.rst b/Misc/NEWS.d/next/Library/2023-01-01-21-54-46.gh-issue-100485.geNrHS.rst new file mode 100644 index 0000000..9f6e593 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-01-01-21-54-46.gh-issue-100485.geNrHS.rst @@ -0,0 +1 @@ +Add math.sumprod() to compute the sum of products. |