index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_math.py
Commit message (
Expand
)
Author
Age
*
gh-118671: Updated dead ActiveState links (#118730)
trag1c
2024-05-08
*
gh-116622: Test updates for Android (#117299)
Malcolm Smith
2024-04-05
*
gh-73468: Add math.fma() function (#116667)
Victor Stinner
2024-03-17
*
gh-102837: more tests for the math module (GH-111930)
Sergey B Kirpichev
2023-11-13
*
gh-111342: fix typo in math.sumprod (GH-111416)
Sergey B Kirpichev
2023-10-27
*
gh-108303: Move all math files to `Lib/test/mathdata/` (#109512)
Nikita Sobolev
2023-09-21
*
gh-102837: improve test coverage for math module (#102523)
Sergey B Kirpichev
2023-09-03
*
gh-94906: Support multiple steps in math.nextafter (#103881)
Matthias Görgens
2023-05-19
*
gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)
Sebastian Berg
2023-05-10
*
Revert "gh-89381: Fix invalid signatures of math/cmath.log (#101404)" (#101580)
Mark Dickinson
2023-02-05
*
GH-100485: Create an alternative code path when an accurate fma() implementat...
Raymond Hettinger
2023-02-04
*
gh-89381: Fix invalid signatures of math/cmath.log (#101404)
Sergey B Kirpichev
2023-01-29
*
GH-100485: Add extended accuracy test. Switch to faster fma() based variant...
Raymond Hettinger
2023-01-28
*
GH-100485: Tweaks to sumprod() (GH-100857)
Raymond Hettinger
2023-01-08
*
GH-100485: Add math.sumprod() (GH-100677)
Raymond Hettinger
2023-01-07
*
GH-98897: fix memory leak if `math.dist` raises exception (GH-98898)
Kumar Aditya
2022-10-31
*
bpo-37295: Use constant-time comb() and perm() for larger n depending on k (G...
Serhiy Storchaka
2022-01-09
*
bpo-45917: Add math.exp2() method - return 2 raised to the power of x (GH-29829)
Gideon
2021-11-29
*
bpo-35606: Fix math.prod tests using 'start' as keyword parameter (GH-28595)
Pablo Galindo Salgado
2021-09-28
*
bpo-5846: Do not use obsolete unittest functions. (GH-28303)
Serhiy Storchaka
2021-09-13
*
bpo-44339: Fix math.pow corner case to comply with IEEE 754 (GH-26606)
Mark Dickinson
2021-06-12
*
bpo-44357:Add `math.cbrt()` function: Cube Root (GH-26622)
Ajith Ramachandran
2021-06-10
*
bpo-44364:Add non integral tests for `sqrt()` (#26625)
Ajith Ramachandran
2021-06-10
*
bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)
Inada Naoki
2021-04-04
*
Revert "Fix all Python Cookbook links (#22205)" (GH-22424)
Andre Delfino
2020-09-27
*
bpo-41513: Add accuracy tests for math.hypot() (GH-22327)
Raymond Hettinger
2020-09-20
*
Fix all Python Cookbook links (#22205)
Andre Delfino
2020-09-15
*
bpo-41513: Remove broken tests that fail on Gentoo (GH-22249)
Raymond Hettinger
2020-09-14
*
bpo-41513: Add docs and tests for hypot() (GH-22238)
Raymond Hettinger
2020-09-13
*
bpo-41513: Improve speed and accuracy of math.hypot() (GH-21803)
Raymond Hettinger
2020-08-15
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
*
bpo-39871: Fix possible SystemError in atan2, copysign and remainder (GH-18806)
Zackery Spytz
2020-03-14
*
bpo-39648: Expand math.gcd() and math.lcm() to handle multiple arguments. (GH...
Serhiy Storchaka
2020-02-23
*
bpo-39479:Add math.lcm() function: Least Common Multiple (#18547)
ananthan-123
2020-02-19
*
Move test_math tests (GH-18098)
Victor Stinner
2020-01-21
*
bpo-39396: Fix math.nextafter(-0.0, +0.0) on AIX 7.1 (GH-18094)
Victor Stinner
2020-01-21
*
bpo-39310: Add math.ulp(x) (GH-17965)
Victor Stinner
2020-01-13
*
bpo-39288: Add math.nextafter(x, y) (GH-17937)
Victor Stinner
2020-01-12
*
bpo-38992: avoid fsum test failure from constant-folding (GH-17513)
Mark Dickinson
2019-12-09
*
bpo-38639: Optimize floor(), ceil() and trunc() for floats. (GH-16991)
Serhiy Storchaka
2019-11-16
*
bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH...
Raymond Hettinger
2019-07-27
*
Fix typos in docs, comments and test assert messages (#14872)
Min ho Kim
2019-07-21
*
Remove unused imports in tests (GH-14518)
Victor Stinner
2019-07-01
*
bpo-36511: Add buildbot scripts and fix tests for Windows ARM32 buildbot (GH-...
Paul Monson
2019-06-19
*
bpo-35431: Test math.comb() and math.perm() for OverflowError only on CPython...
Serhiy Storchaka
2019-06-17
*
bpo-37315: Deprecate accepting floats in math.factorial(). (GH-14147)
Serhiy Storchaka
2019-06-17
*
bpo-37178: Allow a one argument form of math.perm() (GH-13905)
Raymond Hettinger
2019-06-08
*
bpo-35431: Drop the k <= n requirement (GH-13798)
Raymond Hettinger
2019-06-04
*
bpo-37128: Add math.perm(). (GH-13731)
Serhiy Storchaka
2019-06-02
*
bpo-35431: Refactor math.comb() implementation. (GH-13725)
Serhiy Storchaka
2019-06-01
[next]