summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_math.py
Commit message (Expand)AuthorAgeFilesLines
* test_math ulp computation was wrong on big-endian systemsMark Dickinson2009-10-171-1/+1
* Fix buggy accuracy testMark Dickinson2009-09-301-1/+1
* Issue #3366: Add gamma function to math module.Mark Dickinson2009-09-281-0/+88
* Use skipUnless to skip math module tests on non-IEEE 754 platforms.Mark Dickinson2009-09-181-31/+34
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-74/+74
* Remove unnecessary double negativeMark Dickinson2009-04-241-1/+1
* Issue #5593: Use more robust test for double-rounding in test_fsum.Mark Dickinson2009-04-241-8/+9
* Rename testSum to testFsum and move it to proper place in test_math.pyMark Dickinson2008-07-311-97/+96
* Rename math.sum to math.fsumMark Dickinson2008-07-301-7/+7
* More modifications to tests for math.sum: replace the PythonMark Dickinson2008-07-291-39/+39
* Remove math.sum tests related to overflow, special values, and behaviourMark Dickinson2008-07-271-65/+10
* Issue #2138: Add math.factorial().Raymond Hettinger2008-06-091-0/+15
* Fix typo in testSumMark Dickinson2008-05-301-1/+1
* Skip math.sum tests on non IEEE 754 platforms, and on IEEE 754 platformsMark Dickinson2008-05-231-0/+16
* Better error reporting in test_math.pyMark Dickinson2008-05-231-0/+4
* Add tests for math.sum (Issue #2819)Mark Dickinson2008-05-231-0/+136
* Issue #2487. math.ldexp(x, n) raised OverflowError when n was large andMark Dickinson2008-05-091-0/+18
* Add test for tanh(-0.) == -0. on IEEE 754 systemsMark Dickinson2008-04-201-0/+58
* Yet more explicit special case handling to makeMark Dickinson2008-04-201-0/+12
* Report additional diagnostic information inMark Dickinson2008-04-201-1/+6
* Additional tests for math.pow, and extra special-caseMark Dickinson2008-04-191-10/+124
* I finally got the time to update and merge Mark's and my trunk-math branch. T...Christian Heimes2008-04-181-3/+238
* Move __builtins__.trunc() to math.trunc() perJeffrey Yasskin2008-02-011-0/+31
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-051-4/+4
* Make math.{floor,ceil}({int,long}) return float again for backwardsJeffrey Yasskin2008-01-041-0/+8
* Added copysign(x, y) function to the math moduleChristian Heimes2008-01-031-0/+7
* Added math.isinf() and math.isnan()Christian Heimes2008-01-031-0/+16
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-0/+26
* Make test_math error messages more meaningful for small discrepancies in resultsNick Coghlan2007-07-271-1/+5
* Add explicit test for a misbehaving math.floorNick Coghlan2007-07-261-0/+4
* Whitespace normalization.Tim Peters2006-11-031-1/+1
* Add tests for basic argument errors.Walter Dörwald2006-10-291-0/+27
* Convert test_math to unittest.Georg Brandl2006-10-281-201/+207
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-4/+4
* Expand log() tests to include long integers.Raymond Hettinger2002-12-181-0/+2
* Apply SF patch 652930: Add optional base argument to math.log(x[, base]).Raymond Hettinger2002-12-141-0/+1
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-1/+1
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Whitespace normalization.Tim Peters2002-05-231-1/+1
* Adds tests for degrees() and radians() functions added to mathmodule.Raymond Hettinger2002-05-131-0/+10
* Rework the way we try to check for libm overflow, given that C99 no longerTim Peters2001-09-051-1/+1
* Reverting the "unixware7" patch: atan2(0, 1) should be 0, regardless ofTim Peters2001-04-121-5/+1
* Unixware 7 support by Billy G. Allie (SF patch 413011)Guido van Rossum2001-04-111-1/+5
* Update the code to better reflect recommended style:Fred Drake2000-12-121-1/+1
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-9/+9
* Test for math.* exceptional behavior only in verbose mode, so that theTim Peters2000-10-161-30/+40
* A Mystery: I somehow managed to delete the last two lines of my test_math.pyTim Peters2000-10-121-0/+2
* Stop raising OverflowError on underflows reported by libm (errno==ERANGE andTim Peters2000-10-121-0/+29
* remove all occurence of math.rint() from the sourcesPeter Schneider-Kamp2000-08-101-12/+0
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-011-4/+10