1. ba303c8 these tests are the result of cpython's incorrect implementation by Benjamin Peterson · 15 years ago
  2. bace676 be more generous to implementations that have implemented correctly by Benjamin Peterson · 15 years ago
  3. e979ec8 Issue #8986: erfc was raising OverflowError on Linux for arguments in by Mark Dickinson · 15 years ago
  4. 62f7e8b Fix unused variable in test_factorial. by Mark Dickinson · 15 years ago
  5. 28d4f9e testCopysign was defined twice in test_math; combine the definitions by Mark Dickinson · 15 years ago
  6. ed28499 Silence -3 warnings. Thanks Florent Xicluna. by Mark Dickinson · 16 years ago
  7. 9cae178 Issue #3366: Add expm1 function to math module. Thanks Eric Smith for by Mark Dickinson · 16 years ago
  8. 9be87bc Issue #3366: Add lgamma function to math module. by Mark Dickinson · 16 years ago
  9. 59ca920 test_math ulp computation was wrong on big-endian systems by Mark Dickinson · 16 years ago
  10. 8ca7482 Fix buggy accuracy test by Mark Dickinson · 16 years ago
  11. b93fff0 Issue #3366: Add gamma function to math module. by Mark Dickinson · 16 years ago
  12. 2985dbb Use skipUnless to skip math module tests on non-IEEE 754 platforms. by Mark Dickinson · 16 years ago
  13. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  14. 0badeef Remove unnecessary double negative by Mark Dickinson · 16 years ago
  15. 6ab635a Issue #5593: Use more robust test for double-rounding in test_fsum. by Mark Dickinson · 16 years ago
  16. 0f6414a Rename testSum to testFsum and move it to proper place in test_math.py by Mark Dickinson · 17 years ago
  17. fef6b13 Rename math.sum to math.fsum by Mark Dickinson · 17 years ago
  18. ff5f16e More modifications to tests for math.sum: replace the Python by Mark Dickinson · 17 years ago
  19. 3e9c60c Remove math.sum tests related to overflow, special values, and behaviour by Mark Dickinson · 17 years ago
  20. ecbdd2e Issue #2138: Add math.factorial(). by Raymond Hettinger · 17 years ago
  21. 8df4e22 Fix typo in testSum by Mark Dickinson · 17 years ago
  22. badd7da Skip math.sum tests on non IEEE 754 platforms, and on IEEE 754 platforms by Mark Dickinson · 17 years ago
  23. d055835 Better error reporting in test_math.py by Mark Dickinson · 17 years ago
  24. c11c339 Add tests for math.sum (Issue #2819) by Mark Dickinson · 17 years ago
  25. f8476c1 Issue #2487. math.ldexp(x, n) raised OverflowError when n was large and by Mark Dickinson · 17 years ago
  26. d6d5148 Add test for tanh(-0.) == -0. on IEEE 754 systems by Mark Dickinson · 17 years ago
  27. cec3f13 Yet more explicit special case handling to make by Mark Dickinson · 17 years ago
  28. 9f99d70 Report additional diagnostic information in by Mark Dickinson · 17 years ago
  29. e941d97 Additional tests for math.pow, and extra special-case by Mark Dickinson · 17 years ago
  30. 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 17 years ago
  31. ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 18 years ago
  32. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
  33. 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 18 years ago
  34. eebb79c Added copysign(x, y) function to the math module by Christian Heimes · 18 years ago
  35. e2ca424 Added math.isinf() and math.isnan() by Christian Heimes · 18 years ago
  36. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
  37. ec2ce9b Make test_math error messages more meaningful for small discrepancies in results by Nick Coghlan · 18 years ago
  38. 00f2029 Add explicit test for a misbehaving math.floor by Nick Coghlan · 18 years ago
  39. abd8a33 Whitespace normalization. by Tim Peters · 19 years ago
  40. 92911bf Add tests for basic argument errors. by Walter Dörwald · 19 years ago
  41. 2f03760 Convert test_math to unittest. by Georg Brandl · 19 years ago
  42. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  43. 72a6ddb Expand log() tests to include long integers. by Raymond Hettinger · 23 years ago
  44. 866964c Apply SF patch 652930: Add optional base argument to math.log(x[, base]). by Raymond Hettinger · 23 years ago
  45. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 23 years ago
  46. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
  47. 8ac1495 Whitespace normalization. by Tim Peters · 23 years ago
  48. 64108af Adds tests for degrees() and radians() functions added to mathmodule. by Raymond Hettinger · 23 years ago
  49. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 24 years ago
  50. 4642cb9 Reverting the "unixware7" patch: atan2(0, 1) should be 0, regardless of by Tim Peters · 24 years ago
  51. 2242f2f Unixware 7 support by Billy G. Allie (SF patch 413011) by Guido van Rossum · 24 years ago
  52. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 25 years ago
  53. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 25 years ago
  54. 98c8184 Test for math.* exceptional behavior only in verbose mode, so that the by Tim Peters · 25 years ago
  55. cb5b5ba A Mystery: I somehow managed to delete the last two lines of my test_math.py by Tim Peters · 25 years ago
  56. 1d12061 Stop raising OverflowError on underflows reported by libm (errno==ERANGE and by Tim Peters · 25 years ago
  57. 10e1bf2 remove all occurence of math.rint() from the sources by Peter Schneider-Kamp · 25 years ago
  58. 8eded19 Trent Mick <trentm@activestate.com>: by Fred Drake · 25 years ago
  59. 71260b8 Added math.rint() -- round according to current IEEE754 mode by Guido van Rossum · 25 years ago
  60. 5ab007b Subtle hack so the eps printed is not dependent on the formatting by Guido van Rossum · 29 years ago
  61. fcce630 Added test for math module by Guido van Rossum · 29 years ago