aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Test and fix for 'math.fsum([nan])'. It's a typo when copying from CPython's...Armin Rigo2015-06-231-1/+7
* Rename 'rctime' to plain 'time'.Amaury Forgeot d'Arc2014-11-121-1/+1
* Improve to decompose into odd factors only. It gives anotherArmin Rigo2013-12-071-5/+12
* The test file I wrote to make very sure that factorial() worksArmin Rigo2013-12-071-0/+22
* Transplant part of e9469da54a1d:Amaury Forgeot d'Arc2013-03-031-2/+2
* move erf, erfc, gamma and lgamma to rlib.rfloat, because they are generallyCarl Friedrich Bolz2013-03-022-148/+37
* Fixed import in test_directAlexander Hesse2013-01-111-1/+1
* Fixed missing import of math in test_ll_math #2Alexander Hesse2013-01-081-1/+0
* Moved MathTests to test_ll_mathAlexander Hesse2013-01-081-205/+2
* Initial package rename:Alexander Hesse2012-12-302-3/+3
* do not wrap callable if testing -Amattip2012-12-131-1/+2
* no bonus points for trying too hardmattip2012-12-131-2/+2
* prefer OverflowError for log{,10,1p} math edge casesmattip2012-12-131-2/+3
* get the rest of math tests passingAlex Gaynor2012-12-021-1/+13
* a bit of progress on teh math testsAlex Gaynor2012-12-021-3/+11
* hg merge defaultAmaury Forgeot d'Arc2012-10-291-1/+1
|\
| * Fix more tests for missing 'itertools'.Armin Rigo2012-10-291-1/+1
* | progressAmaury Forgeot d'Arc2012-10-291-2/+2
|/
* fix mathMaciej Fijalkowski2012-10-121-4/+9
* workaround for issue #1259, use a module that has a correct __file__ attribut...David Schneider2012-10-041-2/+2
* sign of nan is not defined, skip testMatti Picus2012-04-081-0/+1
* add struct here and thereAntonio Cuni2012-03-221-1/+1
* Skip these two tests on Windows.Armin Rigo2012-03-151-0/+3
* float('-nan') should really return -NAN.Armin Rigo2012-03-131-0/+5
* Support -NAN, which is actually different from NAN. We can tellArmin Rigo2012-03-131-0/+6
* Added a failing test.Armin Rigo2011-11-161-0/+10
* Move float/double related code from rarithmetic.py to rfloat.pyAmaury Forgeot d'Arc2011-02-281-3/+3
* Fix the math module on Windows: the external function must be properly declared,Amaury Forgeot d'Arc2011-01-261-0/+2
* Fixed math tests.Alex Gaynor2011-01-191-4/+3
* Skip this test in the same situation as CPython, for the same reason.Armin Rigo2011-01-091-0/+9
* Fix test_direct.Armin Rigo2011-01-091-1/+5
* Add a test for math.trunc().Armin Rigo2010-12-231-0/+9
* Fix testAmaury Forgeot d'Arc2010-09-141-1/+1
* Try to let tests pass when run on top of an older CPythonAmaury Forgeot d'Arc2010-09-141-0/+3
* Fix the math module on Windows, where C99 functions are not available.Amaury Forgeot d'Arc2010-09-141-4/+9
* fix log of negativesBenjamin Peterson2010-07-101-0/+1
* add math.expm1Benjamin Peterson2010-07-061-0/+1
* add log1p, asinh, acosh, and atanhBenjamin Peterson2010-07-061-0/+33
* add new math testsBenjamin Peterson2010-07-051-0/+132
* add math.factorialBenjamin Peterson2010-07-051-3/+11
* passing a large long to ldexp changes it to LONG_MAXBenjamin Peterson2010-07-051-0/+4
* add math.fsum: floating point summation with partialsBenjamin Peterson2010-07-051-0/+38
* Improve tests. Fix an "oups": OverflowError is callable too.Armin Rigo2010-03-172-25/+37
* Improve error testing in the math module, following CPython 2.6.Armin Rigo2010-03-163-0/+252