-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
bpo-39479:Add math.lcm() function: Least Common Multiple #18328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 82 commits
Commits
Show all changes
83 commits
Select commit
Hold shift + click to select a range
78c612a
Update 3.9.rst
ananthan-123 8300b4e
Update math.rst
ananthan-123 4c215e8
Update test_math.py
ananthan-123 5ad99af
Update mathmodule.c
ananthan-123 c373139
Update Doc/library/math.rst
ananthan-123 a23ba14
Update Doc/library/math.rst
ananthan-123 b540fc7
Update Lib/test/test_math.py
ananthan-123 13be573
Update Doc/library/math.rst
ananthan-123 a3a36ab
Update mathmodule.c
ananthan-123 34efffa
Update test_math.py
ananthan-123 e42b00c
Update mathmodule.c
ananthan-123 091c4a6
Update mathmodule.c
ananthan-123 99b1364
Update mathmodule.c
ananthan-123 a5d89b5
Update math.rst
ananthan-123 7823c12
Update math.rst
ananthan-123 ce474a8
Update Doc/library/math.rst
ananthan-123 aa9abb7
Update Doc/library/math.rst
ananthan-123 79bf932
Update math.rst
ananthan-123 972f8e6
Update math.rst
ananthan-123 7598895
📜🤖 Added by blurb_it.
blurb-it[bot] 42669da
Update math.rst
ananthan-123 4ee5b20
Update mathmodule.c
ananthan-123 97a54db
Update mathmodule.c
ananthan-123 4072d92
Update math.rst
ananthan-123 38fa5ed
Update math.rst
ananthan-123 e616c74
Update test_math.py
ananthan-123 fbb064a
Update mathmodule.c
ananthan-123 a72f5dd
Update mathmodule.c
ananthan-123 049d867
Update Lib/test/test_math.py
ananthan-123 6ed8074
Update test_math.py
ananthan-123 e18e43b
Update mathmodule.c
ananthan-123 4e3c1cd
Update test_math.py
ananthan-123 d8b03f9
Update mathmodule.c
ananthan-123 389c497
Update mathmodule.c.h
ananthan-123 97da5b8
Update mathmodule.c
ananthan-123 bc6490b
Update mathmodule.c
ananthan-123 227dee6
Update mathmodule.c
ananthan-123 177d42c
Update Lib/test/test_math.py
ananthan-123 e7e5a84
Update Lib/test/test_math.py
ananthan-123 26ca487
Update mathmodule.c
ananthan-123 30f0226
Update mathmodule.c
ananthan-123 08b1fd2
Update mathmodule.c
ananthan-123 d504b86
Update mathmodule.c
ananthan-123 53d3af1
Update mathmodule.c
ananthan-123 0700ed6
Update mathmodule.c
ananthan-123 e458507
Update mathmodule.c
ananthan-123 67aad61
Update math.rst
ananthan-123 517912b
Update 3.9.rst
ananthan-123 375c258
Update math.rst
ananthan-123 76fed5d
Update mathmodule.c
ananthan-123 d128e2d
Update test_math.py
ananthan-123 e009376
Update test_math.py
ananthan-123 4a4f241
Update mathmodule.c
ananthan-123 a596a83
Update mathmodule.c
ananthan-123 92cd405
Update test_math.py
ananthan-123 c069214
Update mathmodule.c
ananthan-123 8543b03
Update mathmodule.c
ananthan-123 4566c08
Update mathmodule.c
ananthan-123 66e6d65
Update mathmodule.c
ananthan-123 c063ea3
Update test_math.py
ananthan-123 f457948
Update test_math.py
ananthan-123 ea72735
Update mathmodule.c
ananthan-123 46f10f2
Update mathmodule.c
ananthan-123 5b4428b
Update mathmodule.c
ananthan-123 6caf900
Update mathmodule.c
ananthan-123 911570b
Update test_math.py
ananthan-123 24ba4c8
Update mathmodule.c
ananthan-123 b097bc6
Update test_math.py
ananthan-123 ddf5a39
Update mathmodule.c
ananthan-123 37f5233
Update mathmodule.c
ananthan-123 3074e34
Update test_math.py
ananthan-123 3bb50dc
Update mathmodule.c
ananthan-123 e40c94c
Update mathmodule.c
ananthan-123 2e95203
Update mathmodule.c
ananthan-123 afdecfa
Update mathmodule.c
ananthan-123 aa118d9
changed '&&' to '||'
ananthan-123 0c03453
changed gramatical errors
ananthan-123 73fe2af
Update math.rst
ananthan-123 20e696f
removed "else" statement.
ananthan-123 54d1be4
Update Misc/NEWS.d/next/Library/2020-02-04-13-47-16.bpo-39479.BN_mM9.rst
ananthan-123 f4ec251
Update test_math.py
ananthan-123 134c4f4
Update math.rst
ananthan-123 2db3ca7
Changed nonzero to both
ananthan-123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
Misc/NEWS.d/next/Library/2020-02-04-13-47-16.bpo-39479.BN_mM9.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add func:`math.lcm` function: Least Common Multiple. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.