1. b2e5794 bpo-31338 (#3374) by Barry Warsaw · 7 years ago
  2. a0ce375 bpo-29962: add math.remainder (#950) by Mark Dickinson · 7 years ago
  3. 7a26464 bpo-29946: Fix "sqrtpi defined but not used" (#908) by Louie Lu · 7 years ago
  4. 4125e5c bpo-26121: Revert to using the own implementations of lgamma and gamma on all platforms. (#637) by Serhiy Storchaka · 7 years ago
  5. 97553fd bpo-26121: Use C library implementation for math functions: (#515) by Serhiy Storchaka · 7 years ago
  6. 5e65cd3 Issue #29282: Backed out changeset b33012ef1417 by Mark Dickinson · 8 years ago
  7. d1b230e Issue #29282: add fused multiply-add function, math.fma. by Mark Dickinson · 8 years ago
  8. c9ea933 Issue #20186: Converted the math module to Argument Clinic. Patch by Tal Einat. by Serhiy Storchaka · 8 years ago
  9. f17c3de Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  10. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  11. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  12. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  13. 0a891d7 Issue #12345: Add mathemathcal constant tau to math and cmath. by Guido van Rossum · 8 years ago
  14. 18933ed Issue #26512: Merge rounding doc from 3.5 by Martin Panter · 8 years ago
  15. 129fe04 Issue #26512: Clarify Integral; tidy up table of rounding functions by Martin Panter · 8 years ago
  16. a257062 Issue #26898: Fix typo in math.isclose() docstring by Berker Peksag · 8 years ago
  17. d6e6f8b Issue #26898: Fix typo in math.isclose() docstring by Berker Peksag · 8 years ago
  18. 2f1a0b6 Merge for issue #26114 by Brett Cannon · 9 years ago
  19. 45adb31 Issue #26114: Remove a reference to 'Numerical Recipes'. by Brett Cannon · 9 years ago
  20. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  21. d5519ed Issue #19543: Implementation of isclose as per PEP 485 by Tal Einat · 9 years ago
  22. 48e47aa Issue #22486: Added the math.gcd() function. The fractions.gcd() function now is by Serhiy Storchaka · 9 years ago
  23. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  24. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  25. cc8617b Issue #21092: Merge from 3.4. by Mark Dickinson · 10 years ago
  26. dfe0b23 Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hyperbolic sine' (etc.). Remove meaningless reference to radians. by Mark Dickinson · 10 years ago
  27. a5d0c7c Issue #23185: add math.inf and math.nan constants. by Mark Dickinson · 10 years ago
  28. 049e509 Issue #22207: Fix "comparison between signed and unsigned integers" warning in by Victor Stinner · 10 years ago
  29. 5990d28 Issue #20539: Improve math.factorial error messages and types for large inputs. by Mark Dickinson · 10 years ago
  30. 3137885 #12211: remove paragraph about NaNs by Andrew Kuchling · 10 years ago
  31. 8cb1ec3 #12211: clarify math.copysign() documentation and docstring by Andrew Kuchling · 10 years ago
  32. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  33. 039e0cd Issue #16305: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  34. 7646449 Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and diagnosis. by Mark Dickinson · 12 years ago
  35. 7d74b70 merge 3.2 by Benjamin Peterson · 12 years ago
  36. 2354a75 fix indentation by Benjamin Peterson · 12 years ago
  37. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
  38. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  39. 50203a6 Return +-Py_HUGE_VAL for tgamma(+-0) instead of risking FP exceptions by computing 1.0 / 0.0. by Mark Dickinson · 13 years ago
  40. 8f9f8d6 Issue #11888: Use system log2() when available by Victor Stinner · 13 years ago
  41. 83b8c0b Grammatical fix for a comment for log2, to avoid referring to an *algorithm* as monotonic. by Mark Dickinson · 13 years ago
  42. 2344258 Fix cut-and-paste typo in comment: log10 -> log2. by Mark Dickinson · 13 years ago
  43. fa0e3d5 Issue #11888: Add log2 function to math module. Patch written by Mark Dickinson. by Victor Stinner · 13 years ago
  44. 736e7fc Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 by Jesus Cea · 13 years ago
  45. c603717 Issue #9599: Further accuracy tweaks to loghelper. For an integer n that's small enough to be converted to a float without overflow, log(n) is now computed as log(float(n)), and similarly for log10. by Mark Dickinson · 14 years ago
  46. fa41e60 Issue #9599: Tweak loghelper algorithm to return slightly improved results for powers of 2. by Mark Dickinson · 14 years ago
  47. 226f544 Improve docstrings for isnan, isinf and isfinite. by Mark Dickinson · 14 years ago
  48. 8e0c996 Issue #9165: Add math.isfinite and cmath.isfinite. by Mark Dickinson · 14 years ago
  49. 9527afd Fix typo in a comment in mathmodule.c. by Ezio Melotti · 14 years ago
  50. be64d95 Issue #9186: log1p(-1.0) should raise ValueError, not OverflowError. by Mark Dickinson · 14 years ago
  51. 9c91eb8 Minor refactoring in lgamma code, for clarity. by Mark Dickinson · 14 years ago
  52. 6d02d9c Style/consistency nit: make math_floor and math_ceil code look the same. by Mark Dickinson · 14 years ago
  53. f751bc9 fix lookup of __ceil__ by Benjamin Peterson · 14 years ago
  54. b012589 account for different ref counting semantics of _PyObject_LookupSpecial by Benjamin Peterson · 14 years ago
  55. 8bb9cde correctly lookup __trunc__ and __floor__ by Benjamin Peterson · 14 years ago
  56. fdb0acc Merged revisions 82221 via svnmerge from by Mark Dickinson · 14 years ago
  57. bcdf9da Merged revisions 81967 via svnmerge from by Mark Dickinson · 14 years ago
  58. 4c8a9a2 Issue #8692: Improve performance of math.factorial: by Mark Dickinson · 14 years ago
  59. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  60. fbbb9bd Merged revisions 77275 via svnmerge from by Mark Dickinson · 15 years ago
  61. 6ecd9e5 Merged revisions 77234 via svnmerge from by Mark Dickinson · 15 years ago
  62. f371859 Merged revisions 76978 via svnmerge from by Mark Dickinson · 15 years ago
  63. da39dbf Merged revisions 76916 via svnmerge from by Mark Dickinson · 15 years ago
  64. 45f992a Merged revisions 76878 via svnmerge from by Mark Dickinson · 15 years ago
  65. 664b511 Merged revisions 76861 via svnmerge from by Mark Dickinson · 15 years ago
  66. 05d2e08 Merged revisions 76755 via svnmerge from by Mark Dickinson · 15 years ago
  67. a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 15 years ago
  68. 12c4bdb Merged revisions 75117 via svnmerge from by Mark Dickinson · 15 years ago
  69. 6ebe78f Merged revisions 67654,67676-67677,67681,67692,67725,67761,67784-67785,67787-67788,67802,67848-67850,67862-67864,67880,67882 via svnmerge from by Benjamin Peterson · 16 years ago
  70. e675f08 Merged revisions 67707 via svnmerge from by Mark Dickinson · 16 years ago
  71. aa7633a Merged revisions 65258,65292,65299,65308-65309,65315,65326 via svnmerge from by Mark Dickinson · 16 years ago
  72. fea6a94 Merged revisions 64365,64370,64406,64408-64409,64412,64416-64417,64420-64421,64425-64428 via svnmerge from by Benjamin Peterson · 16 years ago
  73. 66bada5 Quick fix for test_math failures on Solaris 10 buildbot. For future by Mark Dickinson · 16 years ago
  74. c2c5e00 Merged revisions 64349 via svnmerge from by Benjamin Peterson · 16 years ago
  75. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  76. c28e1fa Merged revisions 64002-64003,64012,64036-64037,64047,64050-64052,64054-64055,64066,64071 via svnmerge from by Georg Brandl · 16 years ago
  77. f78e02b Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from by Georg Brandl · 16 years ago
  78. 2b7411d Merged revisions 63542-63544,63546,63553,63563-63564,63567,63569,63576 via svnmerge from by Benjamin Peterson · 16 years ago
  79. c1fc34a Remove duplicate check for PyLong_Check(). It was checked above. by Neal Norwitz · 16 years ago
  80. 6461e10 Merged revisions 62914-62916,62918-62919,62921-62922,62924-62942,62944-62945,62947-62949 via svnmerge from by Alexandre Vassalotti · 16 years ago
  81. b63aff1 Revert the temporary change in r62624 by Mark Dickinson · 16 years ago
  82. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  83. 73eada3 One more attempt to track down Debian/alpha test_math failures: by Mark Dickinson · 16 years ago
  84. de42962 Whoops. errno should only be tested when the result is finite. by Mark Dickinson · 16 years ago
  85. a0de26c Make floating-point exception error messages slightly more verbose: in by Mark Dickinson · 16 years ago
  86. e57950f Merged revisions 62420-62421,62423-62424 via svnmerge from by Christian Heimes · 16 years ago
  87. a342c01 Merged revisions 62386-62387,62389-62393,62396,62400-62402,62407,62409-62410,62412-62414,62418-62419 via svnmerge from by Christian Heimes · 16 years ago
  88. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago
  89. 292d351 Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,60540-60551 via svnmerge from by Christian Heimes · 17 years ago
  90. 400adb0 Merged revisions 60475-60479,60481-60488 via svnmerge from by Christian Heimes · 17 years ago
  91. fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 17 years ago
  92. af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 17 years ago
  93. 969fe57 Merged revisions 60245-60277 via svnmerge from by Christian Heimes · 17 years ago
  94. c215583 Make math.floor and math.ceil return ints instead of floats. by Jeffrey Yasskin · 17 years ago
  95. a34706f Merged revisions 59680-59695 via svnmerge from by Christian Heimes · 17 years ago
  96. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  97. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  98. 13e05de Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__ by Guido van Rossum · 17 years ago
  99. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  100. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago