index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_math.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-37295: Use constant-time comb() and perm() for larger n depending on k (G...
Serhiy Storchaka
2022-01-09
1
-4/+4
*
bpo-45917: Add math.exp2() method - return 2 raised to the power of x (GH-29829)
Gideon
2021-11-29
1
-0/+11
*
bpo-35606: Fix math.prod tests using 'start' as keyword parameter (GH-28595)
Pablo Galindo Salgado
2021-09-28
1
-6/+12
*
bpo-5846: Do not use obsolete unittest functions. (GH-28303)
Serhiy Storchaka
2021-09-13
1
-8/+5
*
bpo-44339: Fix math.pow corner case to comply with IEEE 754 (GH-26606)
Mark Dickinson
2021-06-12
1
-2/+2
*
bpo-44357:Add `math.cbrt()` function: Cube Root (GH-26622)
Ajith Ramachandran
2021-06-10
1
-0/+16
*
bpo-44364:Add non integral tests for `sqrt()` (#26625)
Ajith Ramachandran
2021-06-10
1
-0/+4
*
bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)
Inada Naoki
2021-04-04
1
-2/+2
*
Revert "Fix all Python Cookbook links (#22205)" (GH-22424)
Andre Delfino
2020-09-27
1
-1/+1
*
bpo-41513: Add accuracy tests for math.hypot() (GH-22327)
Raymond Hettinger
2020-09-21
1
-0/+63
*
Fix all Python Cookbook links (#22205)
Andre Delfino
2020-09-15
1
-1/+1
*
bpo-41513: Remove broken tests that fail on Gentoo (GH-22249)
Raymond Hettinger
2020-09-15
1
-51/+0
*
bpo-41513: Add docs and tests for hypot() (GH-22238)
Raymond Hettinger
2020-09-14
1
-0/+51
*
bpo-41513: Improve speed and accuracy of math.hypot() (GH-21803)
Raymond Hettinger
2020-08-16
1
-3/+4
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
1
-10/+5
*
bpo-39871: Fix possible SystemError in atan2, copysign and remainder (GH-18806)
Zackery Spytz
2020-03-14
1
-0/+16
*
bpo-39648: Expand math.gcd() and math.lcm() to handle multiple arguments. (GH...
Serhiy Storchaka
2020-02-23
1
-25/+33
*
bpo-39479:Add math.lcm() function: Least Common Multiple (#18547)
ananthan-123
2020-02-19
1
-0/+35
*
Move test_math tests (GH-18098)
Victor Stinner
2020-01-21
1
-148/+148
*
bpo-39396: Fix math.nextafter(-0.0, +0.0) on AIX 7.1 (GH-18094)
Victor Stinner
2020-01-21
1
-77/+77
*
bpo-39310: Add math.ulp(x) (GH-17965)
Victor Stinner
2020-01-13
1
-28/+27
*
bpo-39288: Add math.nextafter(x, y) (GH-17937)
Victor Stinner
2020-01-12
1
-0/+54
*
bpo-38992: avoid fsum test failure from constant-folding (GH-17513)
Mark Dickinson
2019-12-09
1
-1/+7
*
bpo-38639: Optimize floor(), ceil() and trunc() for floats. (GH-16991)
Serhiy Storchaka
2019-11-16
1
-21/+40
*
bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH...
Raymond Hettinger
2019-07-27
1
-2/+4
*
Fix typos in docs, comments and test assert messages (#14872)
Min ho Kim
2019-07-21
1
-2/+2
*
Remove unused imports in tests (GH-14518)
Victor Stinner
2019-07-01
1
-1/+1
*
bpo-36511: Add buildbot scripts and fix tests for Windows ARM32 buildbot (GH-...
Paul Monson
2019-06-19
1
-0/+2
*
bpo-35431: Test math.comb() and math.perm() for OverflowError only on CPython...
Serhiy Storchaka
2019-06-17
1
-3/+5
*
bpo-37315: Deprecate accepting floats in math.factorial(). (GH-14147)
Serhiy Storchaka
2019-06-17
1
-7/+12
*
bpo-37178: Allow a one argument form of math.perm() (GH-13905)
Raymond Hettinger
2019-06-08
1
-2/+7
*
bpo-35431: Drop the k <= n requirement (GH-13798)
Raymond Hettinger
2019-06-04
1
-6/+6
*
bpo-37128: Add math.perm(). (GH-13731)
Serhiy Storchaka
2019-06-02
1
-1/+65
*
bpo-35431: Refactor math.comb() implementation. (GH-13725)
Serhiy Storchaka
2019-06-01
1
-7/+22
*
bpo-35431: Implemented math.comb (GH-11414)
Yash Aggarwal
2019-06-01
1
-0/+51
*
bpo-36957: Speed up math.isqrt (#13405)
Mark Dickinson
2019-05-19
1
-0/+1
*
bpo-36887: add math.isqrt (GH-13244)
Mark Dickinson
2019-05-18
1
-0/+51
*
Rework integer overflow path in math.prod and add more tests (GH-11809)
Pablo Galindo
2019-03-09
1
-35/+86
*
Fix division by 0 when checking for overflow in math.prod (GH-11808)
Pablo Galindo
2019-02-10
1
-0/+4
*
bpo-35606: Implement math.prod (GH-11359)
Pablo Galindo
2019-02-07
1
-0/+31
*
Fast path for int inputs to math.dist() and math.hypot() (GH-11692)
Raymond Hettinger
2019-01-28
1
-1/+10
*
bpo-34838: Use subclass_of for math.dist. (GH-9659)
Ammar Askar
2019-01-12
1
-0/+2
*
closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206)
Benjamin Peterson
2018-09-12
1
-2/+0
*
bpo-33083 - Make math.factorial reject arguments that are not int-like (GH-6149)
Pablo Galindo
2018-09-03
1
-0/+5
*
Add more tests and assertions for math.hypot() and math.dist() (GH-8747)
Raymond Hettinger
2018-08-12
1
-5/+12
*
bpo-33089: Add math.dist() for computing the Euclidean distance between two p...
Raymond Hettinger
2018-07-31
1
-0/+103
*
bpo-33089: Multidimensional math.hypot() (GH-8474)
Raymond Hettinger
2018-07-28
1
-10/+66
*
bpo-32297: Few misspellings found in Python source code comments. (#4803)
Mike
2017-12-14
1
-1/+1
*
bpo-29962: add math.remainder (#950)
Mark Dickinson
2017-04-05
1
-0/+135
*
Issue #29282: Backed out changeset b33012ef1417
Mark Dickinson
2017-01-21
1
-234/+0
[next]