summaryrefslogtreecommitdiff
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorananthan-123 <ananthakrishnan15.2001@gmail.com>2020-02-19 23:51:37 +0530
committerGitHub <noreply@github.com>2020-02-19 18:21:37 +0000
commitf2ee21d858bc03dd801b97afe60ee2ea289e2fe9 (patch)
tree7a35d8b02a53df4505d275b67bc56462cda33619 /Misc/NEWS.d
parent4dee92b0ad9f4e3ea2fbbbb5253340801bb92dc7 (diff)
downloadcpython-git-f2ee21d858bc03dd801b97afe60ee2ea289e2fe9.tar.gz
bpo-39479:Add math.lcm() function: Least Common Multiple (#18547)
* Update math.rst * Update math.rst * updated whats new * Update test_math.py * Update mathmodule.c * Update mathmodule.c.h * Update ACKS * 📜🤖 Added by blurb_it. * Update 3.9.rst * Update 2020-02-18-12-37-16.bpo-39479.j3UcCq.rst * Update math.rst * Update 2020-02-18-12-37-16.bpo-39479.j3UcCq.rst * Update test_math.py * Update ACKS * Update mathmodule.c.h * Update mathmodule.c * Update mathmodule.c.h * Update mathmodule.c.h Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2020-02-18-12-37-16.bpo-39479.j3UcCq.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-02-18-12-37-16.bpo-39479.j3UcCq.rst b/Misc/NEWS.d/next/Library/2020-02-18-12-37-16.bpo-39479.j3UcCq.rst
new file mode 100644
index 0000000000..6f16623a8f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-02-18-12-37-16.bpo-39479.j3UcCq.rst
@@ -0,0 +1 @@
+Add :func:`math.lcm` function: least common multiple.