summaryrefslogtreecommitdiffstats
path: root/Lib/test/math_testcases.txt
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7575: An overflow test for math.expm1 was failing on OS X 10.4/Intel,Mark Dickinson2009-12-291-1/+7
| | | | | | | due to a defect in the platform's implementation of expm1. Since the issue is of low severity, and appears to be fixed in OS X 10.5 and 10.6, it doesn't seem worth working around, so I'm just weakening the relevant test so that it passes on 10.4.
* Issue #3366: Add error function and complementary error function toMark Dickinson2009-12-191-0/+82
| | | | math module.
* Issue #3366: Add expm1 function to math module. Thanks Eric Smith forMark Dickinson2009-12-161-0/+70
| | | | testing on Windows.
* Issue #3366: Add lgamma function to math module.Mark Dickinson2009-12-111-0/+105
|
* Issue #3366: Add gamma function to math module.Mark Dickinson2009-09-281-0/+146
(lgamma, erf and erfc to follow).