1. 0f6414a Rename testSum to testFsum and move it to proper place in test_math.py by Mark Dickinson · 17 years ago
  2. fef6b13 Rename math.sum to math.fsum by Mark Dickinson · 17 years ago
  3. ff5f16e More modifications to tests for math.sum: replace the Python by Mark Dickinson · 17 years ago
  4. 3e9c60c Remove math.sum tests related to overflow, special values, and behaviour by Mark Dickinson · 17 years ago
  5. ecbdd2e Issue #2138: Add math.factorial(). by Raymond Hettinger · 17 years ago
  6. 8df4e22 Fix typo in testSum by Mark Dickinson · 17 years ago
  7. badd7da Skip math.sum tests on non IEEE 754 platforms, and on IEEE 754 platforms by Mark Dickinson · 17 years ago
  8. d055835 Better error reporting in test_math.py by Mark Dickinson · 17 years ago
  9. c11c339 Add tests for math.sum (Issue #2819) by Mark Dickinson · 17 years ago
  10. f8476c1 Issue #2487. math.ldexp(x, n) raised OverflowError when n was large and by Mark Dickinson · 17 years ago
  11. d6d5148 Add test for tanh(-0.) == -0. on IEEE 754 systems by Mark Dickinson · 17 years ago
  12. cec3f13 Yet more explicit special case handling to make by Mark Dickinson · 17 years ago
  13. 9f99d70 Report additional diagnostic information in by Mark Dickinson · 17 years ago
  14. e941d97 Additional tests for math.pow, and extra special-case by Mark Dickinson · 17 years ago
  15. 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
  16. ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 18 years ago
  17. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
  18. 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 18 years ago
  19. eebb79c Added copysign(x, y) function to the math module by Christian Heimes · 18 years ago
  20. e2ca424 Added math.isinf() and math.isnan() by Christian Heimes · 18 years ago
  21. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
  22. ec2ce9b Make test_math error messages more meaningful for small discrepancies in results by Nick Coghlan · 18 years ago
  23. 00f2029 Add explicit test for a misbehaving math.floor by Nick Coghlan · 18 years ago
  24. abd8a33 Whitespace normalization. by Tim Peters · 19 years ago
  25. 92911bf Add tests for basic argument errors. by Walter Dörwald · 19 years ago
  26. 2f03760 Convert test_math to unittest. by Georg Brandl · 19 years ago
  27. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  28. 72a6ddb Expand log() tests to include long integers. by Raymond Hettinger · 23 years ago
  29. 866964c Apply SF patch 652930: Add optional base argument to math.log(x[, base]). by Raymond Hettinger · 23 years ago
  30. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 23 years ago
  31. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
  32. 8ac1495 Whitespace normalization. by Tim Peters · 23 years ago
  33. 64108af Adds tests for degrees() and radians() functions added to mathmodule. by Raymond Hettinger · 23 years ago
  34. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 24 years ago
  35. 4642cb9 Reverting the "unixware7" patch: atan2(0, 1) should be 0, regardless of by Tim Peters · 24 years ago
  36. 2242f2f Unixware 7 support by Billy G. Allie (SF patch 413011) by Guido van Rossum · 24 years ago
  37. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 25 years ago
  38. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 25 years ago
  39. 98c8184 Test for math.* exceptional behavior only in verbose mode, so that the by Tim Peters · 25 years ago
  40. cb5b5ba A Mystery: I somehow managed to delete the last two lines of my test_math.py by Tim Peters · 25 years ago
  41. 1d12061 Stop raising OverflowError on underflows reported by libm (errno==ERANGE and by Tim Peters · 25 years ago
  42. 10e1bf2 remove all occurence of math.rint() from the sources by Peter Schneider-Kamp · 25 years ago
  43. 8eded19 Trent Mick <trentm@activestate.com>: by Fred Drake · 25 years ago
  44. 71260b8 Added math.rint() -- round according to current IEEE754 mode by Guido van Rossum · 25 years ago
  45. 5ab007b Subtle hack so the eps printed is not dependent on the formatting by Guido van Rossum · 29 years ago
  46. fcce630 Added test for math module by Guido van Rossum · 29 years ago