summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_math.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-35431: Drop the k <= n requirement (GH-13798)Raymond Hettinger2019-06-041-6/+6
* bpo-37128: Add math.perm(). (GH-13731)Serhiy Storchaka2019-06-021-1/+65
* bpo-35431: Refactor math.comb() implementation. (GH-13725)Serhiy Storchaka2019-06-011-7/+22
* bpo-35431: Implemented math.comb (GH-11414)Yash Aggarwal2019-06-011-0/+51
* bpo-36957: Speed up math.isqrt (#13405)Mark Dickinson2019-05-191-0/+1
* bpo-36887: add math.isqrt (GH-13244)Mark Dickinson2019-05-181-0/+51
* Rework integer overflow path in math.prod and add more tests (GH-11809)Pablo Galindo2019-03-091-35/+86
* Fix division by 0 when checking for overflow in math.prod (GH-11808)Pablo Galindo2019-02-101-0/+4
* bpo-35606: Implement math.prod (GH-11359)Pablo Galindo2019-02-071-0/+31
* Fast path for int inputs to math.dist() and math.hypot() (GH-11692)Raymond Hettinger2019-01-281-1/+10
* bpo-34838: Use subclass_of for math.dist. (GH-9659)Ammar Askar2019-01-121-0/+2
* closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206)Benjamin Peterson2018-09-121-2/+0
* bpo-33083 - Make math.factorial reject arguments that are not int-like (GH-6149)Pablo Galindo2018-09-031-0/+5
* Add more tests and assertions for math.hypot() and math.dist() (GH-8747)Raymond Hettinger2018-08-121-5/+12
* bpo-33089: Add math.dist() for computing the Euclidean distance between two p...Raymond Hettinger2018-07-311-0/+103
* bpo-33089: Multidimensional math.hypot() (GH-8474)Raymond Hettinger2018-07-281-10/+66
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-1/+1
* bpo-29962: add math.remainder (#950)Mark Dickinson2017-04-051-0/+135
* Issue #29282: Backed out changeset b33012ef1417Mark Dickinson2017-01-211-234/+0
* Issue #29282: add fused multiply-add function, math.fma.Mark Dickinson2017-01-211-0/+234
* Issue #27427: Additional tests for the math module. Thanks Francisco Couzo.Mark Dickinson2016-09-041-6/+22
* Issue #27953: skip failing math and cmath tests for tan on OS X 10.4.Mark Dickinson2016-09-041-1/+18
* Issue #26040: Improve test_math and test_cmath coverage and rigour. Thanks Je...Mark Dickinson2016-09-031-87/+178
* Issue #12345: Add mathemathcal constant tau to math and cmath.Guido van Rossum2016-08-151-0/+1
* Issue #27626: Merge spelling fixes from 3.5Martin Panter2016-07-281-2/+2
|\
| * Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-2/+2
* | Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+0
|/
* Issue #19543: Implementation of isclose as per PEP 485Tal Einat2015-05-311-0/+121
* Issue #22486: Added the math.gcd() function. The fractions.gcd() function no...Serhiy Storchaka2015-05-121-0/+51
* Issue #23185: add math.inf and math.nan constants.Mark Dickinson2015-01-111-0/+11
* Issue #20539: Improve math.factorial error messages and types for large inputs.Mark Dickinson2014-04-101-2/+10
* Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-31/+30
* (Merge 3.2) Close #12230: Mac OS X Tiger (10.4) has a kernel bug: sometimes,Victor Stinner2011-06-011-3/+2
|\
* | test.support: add requires_mac_ver() functionVictor Stinner2011-06-011-3/+4
* | Issue #11888: skip some log2 tests on Mac OS X TigerVictor Stinner2011-05-101-4/+11
* | Issue #11188: In log2 tests, create powers of 2 using ldexp(1, n) instead of ...Mark Dickinson2011-05-091-2/+2
* | Issue #11888: Add log2 function to math module. Patch written by MarkVictor Stinner2011-05-081-0/+22
* | test_math.py: Use correct signs on zeros for expected fmod results.Mark Dickinson2011-05-031-6/+6
* | Remove an unused import and an unused local definition from test_math.py.Mark Dickinson2011-05-031-2/+0
|/
* #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| * Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-59/+59
| * Merged revisions 81127 via svnmerge fromMark Dickinson2010-05-121-1/+1
| * Merged revisions 78045 via svnmerge fromMark Dickinson2010-02-061-25/+24
| * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-131-74/+74
* | Issue #10624: Move requires_IEEE_754 into test.support. I'll fix up other use...Eric Smith2010-12-041-6/+1
* | #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-56/+56
* | Issue #10337: skip tests of tanh() sign in test_math and test_cmath if tanh()Victor Stinner2010-11-071-6/+10
* | Issue #9599: Further accuracy tweaks to loghelper. For an integer n that's ...Mark Dickinson2010-09-291-2/+9
* | Issue #9165: Add math.isfinite and cmath.isfinite.Mark Dickinson2010-07-111-0/+9