1. 0148470 Fix inconsequential typo in math.remainder algorithm comments. (#14746) by Mark Dickinson · 5 years ago
  2. dc3f99f bpo-37548: Document range of atan, acos and asin (GH-14717) by Giovanni Cappellotto · 5 years ago
  3. f7d72e4 Fix some typos (GH-14435) by Min ho Kim · 5 years ago
  4. 231aad3 bpo-37315: Deprecate accepting floats in math.factorial(). (GH-14147) by Serhiy Storchaka · 5 years ago
  5. 2dfeaa9 Turn math.isqrt assertion into a comment to clarify its purpose. (GH-14131) by Mark Dickinson · 5 years ago
  6. 45e0411 Simplify negativity checks in math.comb and math.perm. (GH-13870) by Mark Dickinson · 5 years ago
  7. e119b3d bpo-37178: Allow a one argument form of math.perm() (GH-13905) by Raymond Hettinger · 5 years ago
  8. 963eb0f bpo-35431: Drop the k <= n requirement (GH-13798) by Raymond Hettinger · 5 years ago
  9. 5ae299a bpo-37128: Add math.perm(). (GH-13731) by Serhiy Storchaka · 5 years ago
  10. 2b843ac bpo-35431: Refactor math.comb() implementation. (GH-13725) by Serhiy Storchaka · 5 years ago
  11. 4a68650 bpo-35431: Implemented math.comb (GH-11414) by Yash Aggarwal · 5 years ago
  12. 5c08ce9 bpo-36957: Speed up math.isqrt (#13405) by Mark Dickinson · 5 years ago
  13. a5119e7 bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416) by Serhiy Storchaka · 5 years ago
  14. 73934b9 bpo-36887: add math.isqrt (GH-13244) by Mark Dickinson · 5 years ago
  15. 6faad35 bpo-36908: 'This module is always available' isn't helpful. (#13297) by Ned Batchelder · 5 years ago
  16. 0411411 Rework integer overflow path in math.prod and add more tests (GH-11809) by Pablo Galindo · 5 years ago
  17. f57cd82 bpo-36106: Resolve sinpi name clash with libm (IEEE-754 violation). (GH-12027) by Dima Pasechnik · 5 years ago
  18. 4207907 Fix division by 0 when checking for overflow in math.prod (GH-11808) by Pablo Galindo · 5 years ago
  19. bc09851 bpo-35606: Implement math.prod (GH-11359) by Pablo Galindo · 5 years ago
  20. cfd735e Move float conversion into a macro. Apply to fsum (GH-11698) by Raymond Hettinger · 5 years ago
  21. 808180c Fast path for int inputs to math.dist() and math.hypot() (GH-11692) by Raymond Hettinger · 5 years ago
  22. d0d3e99 bpo-35719: Optimize multi-argument math functions. (GH-11527) by Serhiy Storchaka · 5 years ago
  23. cb08a71 bpo-34838: Use subclass_of for math.dist. (GH-9659) by Ammar Askar · 5 years ago
  24. 4c49da0 bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) by Zackery Spytz · 6 years ago
  25. 216aaaa Fixing wording in comment. (GH-10425) by Raymond Hettinger · 6 years ago
  26. df81015 Speed-up math.dist() by 30% (GH-9628) by Raymond Hettinger · 6 years ago
  27. e9ba370 bpo-33083 - Make math.factorial reject arguments that are not int-like (GH-6149) by Pablo Galindo · 6 years ago
  28. f326714 Minor improvement to code clarity (GH-9036) by Raymond Hettinger · 6 years ago
  29. 745c0f3 Simplify vector_norm() by eliminating special cases in the main loop (GH-9006) by Raymond Hettinger · 6 years ago
  30. 21786f5 Improve commutativity of math.hypot() and math.dist() (GH-8984) by Raymond Hettinger · 6 years ago
  31. 74734f7 Fast path for exact floats in math.hypot() and math.dist() (GH-8949) by Raymond Hettinger · 6 years ago
  32. a47f394 Minor code clean-up. Don't alter the input vector. Use variables instead. GH-8748 by Raymond Hettinger · 6 years ago
  33. 0041459 Add more tests and assertions for math.hypot() and math.dist() (GH-8747) by Raymond Hettinger · 6 years ago
  34. c630e10 Factor-out common code. Also, optimize common cases by preallocating space on the stack. GH-8738 by Raymond Hettinger · 6 years ago
  35. 1399074 Replace straight addition with Kahan summation and move max to the end (GH-8727) by Raymond Hettinger · 6 years ago
  36. 9c18b1a bpo-33089: Add math.dist() for computing the Euclidean distance between two points (GH-8561) by Raymond Hettinger · 6 years ago
  37. c6dabe3 bpo-33089: Multidimensional math.hypot() (GH-8474) by Raymond Hettinger · 6 years ago
  38. b2e5794 bpo-31338 (#3374) by Barry Warsaw · 7 years ago
  39. a0ce375 bpo-29962: add math.remainder (#950) by Mark Dickinson · 7 years ago
  40. 7a26464 bpo-29946: Fix "sqrtpi defined but not used" (#908) by Louie Lu · 7 years ago
  41. 4125e5c bpo-26121: Revert to using the own implementations of lgamma and gamma on all platforms. (#637) by Serhiy Storchaka · 7 years ago
  42. 97553fd bpo-26121: Use C library implementation for math functions: (#515) by Serhiy Storchaka · 7 years ago
  43. 5e65cd3 Issue #29282: Backed out changeset b33012ef1417 by Mark Dickinson · 7 years ago
  44. d1b230e Issue #29282: add fused multiply-add function, math.fma. by Mark Dickinson · 7 years ago
  45. c9ea933 Issue #20186: Converted the math module to Argument Clinic. Patch by Tal Einat. by Serhiy Storchaka · 7 years ago
  46. f17c3de Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  47. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  48. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  49. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  50. 0a891d7 Issue #12345: Add mathemathcal constant tau to math and cmath. by Guido van Rossum · 8 years ago
  51. 18933ed Issue #26512: Merge rounding doc from 3.5 by Martin Panter · 8 years ago
  52. 129fe04 Issue #26512: Clarify Integral; tidy up table of rounding functions by Martin Panter · 8 years ago
  53. a257062 Issue #26898: Fix typo in math.isclose() docstring by Berker Peksag · 8 years ago
  54. d6e6f8b Issue #26898: Fix typo in math.isclose() docstring by Berker Peksag · 8 years ago
  55. 2f1a0b6 Merge for issue #26114 by Brett Cannon · 8 years ago
  56. 45adb31 Issue #26114: Remove a reference to 'Numerical Recipes'. by Brett Cannon · 8 years ago
  57. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  58. d5519ed Issue #19543: Implementation of isclose as per PEP 485 by Tal Einat · 9 years ago
  59. 48e47aa Issue #22486: Added the math.gcd() function. The fractions.gcd() function now is by Serhiy Storchaka · 9 years ago
  60. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  61. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  62. cc8617b Issue #21092: Merge from 3.4. by Mark Dickinson · 9 years ago
  63. dfe0b23 Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hyperbolic sine' (etc.). Remove meaningless reference to radians. by Mark Dickinson · 9 years ago
  64. a5d0c7c Issue #23185: add math.inf and math.nan constants. by Mark Dickinson · 9 years ago
  65. 049e509 Issue #22207: Fix "comparison between signed and unsigned integers" warning in by Victor Stinner · 10 years ago
  66. 5990d28 Issue #20539: Improve math.factorial error messages and types for large inputs. by Mark Dickinson · 10 years ago
  67. 3137885 #12211: remove paragraph about NaNs by Andrew Kuchling · 10 years ago
  68. 8cb1ec3 #12211: clarify math.copysign() documentation and docstring by Andrew Kuchling · 10 years ago
  69. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  70. 039e0cd Issue #16305: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  71. 7646449 Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and diagnosis. by Mark Dickinson · 12 years ago
  72. 7d74b70 merge 3.2 by Benjamin Peterson · 12 years ago
  73. 2354a75 fix indentation by Benjamin Peterson · 12 years ago
  74. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 12 years ago
  75. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  76. 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
  77. 8f9f8d6 Issue #11888: Use system log2() when available by Victor Stinner · 13 years ago
  78. 83b8c0b Grammatical fix for a comment for log2, to avoid referring to an *algorithm* as monotonic. by Mark Dickinson · 13 years ago
  79. 2344258 Fix cut-and-paste typo in comment: log10 -> log2. by Mark Dickinson · 13 years ago
  80. fa0e3d5 Issue #11888: Add log2 function to math module. Patch written by Mark Dickinson. by Victor Stinner · 13 years ago
  81. 736e7fc Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 by Jesus Cea · 13 years ago
  82. 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
  83. fa41e60 Issue #9599: Tweak loghelper algorithm to return slightly improved results for powers of 2. by Mark Dickinson · 14 years ago
  84. 226f544 Improve docstrings for isnan, isinf and isfinite. by Mark Dickinson · 14 years ago
  85. 8e0c996 Issue #9165: Add math.isfinite and cmath.isfinite. by Mark Dickinson · 14 years ago
  86. 9527afd Fix typo in a comment in mathmodule.c. by Ezio Melotti · 14 years ago
  87. be64d95 Issue #9186: log1p(-1.0) should raise ValueError, not OverflowError. by Mark Dickinson · 14 years ago
  88. 9c91eb8 Minor refactoring in lgamma code, for clarity. by Mark Dickinson · 14 years ago
  89. 6d02d9c Style/consistency nit: make math_floor and math_ceil code look the same. by Mark Dickinson · 14 years ago
  90. f751bc9 fix lookup of __ceil__ by Benjamin Peterson · 14 years ago
  91. b012589 account for different ref counting semantics of _PyObject_LookupSpecial by Benjamin Peterson · 14 years ago
  92. 8bb9cde correctly lookup __trunc__ and __floor__ by Benjamin Peterson · 14 years ago
  93. fdb0acc Merged revisions 82221 via svnmerge from by Mark Dickinson · 14 years ago
  94. bcdf9da Merged revisions 81967 via svnmerge from by Mark Dickinson · 14 years ago
  95. 4c8a9a2 Issue #8692: Improve performance of math.factorial: by Mark Dickinson · 14 years ago
  96. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  97. fbbb9bd Merged revisions 77275 via svnmerge from by Mark Dickinson · 15 years ago
  98. 6ecd9e5 Merged revisions 77234 via svnmerge from by Mark Dickinson · 15 years ago
  99. f371859 Merged revisions 76978 via svnmerge from by Mark Dickinson · 15 years ago
  100. da39dbf Merged revisions 76916 via svnmerge from by Mark Dickinson · 15 years ago