1. 76821ba bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH-14975) (GH-14984) by Miss Islington (bot) · 5 years ago
  2. 24b5b36 [3.8] Fix typos in docs, comments and test assert messages (GH-14872). (#14900) by Kyle Stanley · 5 years ago
  3. 466e18e Remove unused imports in tests (GH-14518) (GH-14520) by Victor Stinner · 5 years ago
  4. 914d6b7 [3.8] bpo-35431: Test math.comb() and math.perm() for OverflowError only on CPython. (GH-14146) (#14226) by Serhiy Storchaka · 5 years ago
  5. feaceaa bpo-37178: Allow a one argument form of math.perm() (GH-13905) (GH-13919) by Miss Islington (bot) · 5 years ago
  6. 963eb0f bpo-35431: Drop the k <= n requirement (GH-13798) by Raymond Hettinger · 5 years ago
  7. 5ae299a bpo-37128: Add math.perm(). (GH-13731) by Serhiy Storchaka · 5 years ago
  8. 2b843ac bpo-35431: Refactor math.comb() implementation. (GH-13725) by Serhiy Storchaka · 5 years ago
  9. 4a68650 bpo-35431: Implemented math.comb (GH-11414) by Yash Aggarwal · 5 years ago
  10. 5c08ce9 bpo-36957: Speed up math.isqrt (#13405) by Mark Dickinson · 5 years ago
  11. 73934b9 bpo-36887: add math.isqrt (GH-13244) by Mark Dickinson · 5 years ago
  12. 0411411 Rework integer overflow path in math.prod and add more tests (GH-11809) by Pablo Galindo · 5 years ago
  13. 4207907 Fix division by 0 when checking for overflow in math.prod (GH-11808) by Pablo Galindo · 5 years ago
  14. bc09851 bpo-35606: Implement math.prod (GH-11359) by Pablo Galindo · 5 years ago
  15. 808180c Fast path for int inputs to math.dist() and math.hypot() (GH-11692) by Raymond Hettinger · 5 years ago
  16. cb08a71 bpo-34838: Use subclass_of for math.dist. (GH-9659) by Ammar Askar · 6 years ago
  17. 865c17f closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206) by Benjamin Peterson · 6 years ago
  18. e9ba370 bpo-33083 - Make math.factorial reject arguments that are not int-like (GH-6149) by Pablo Galindo · 6 years ago
  19. 0041459 Add more tests and assertions for math.hypot() and math.dist() (GH-8747) by Raymond Hettinger · 6 years ago
  20. 9c18b1a bpo-33089: Add math.dist() for computing the Euclidean distance between two points (GH-8561) by Raymond Hettinger · 6 years ago
  21. c6dabe3 bpo-33089: Multidimensional math.hypot() (GH-8474) by Raymond Hettinger · 6 years ago
  22. 53f7a7c bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 7 years ago
  23. a0ce375 bpo-29962: add math.remainder (#950) by Mark Dickinson · 7 years ago
  24. 5e65cd3 Issue #29282: Backed out changeset b33012ef1417 by Mark Dickinson · 8 years ago
  25. d1b230e Issue #29282: add fused multiply-add function, math.fma. by Mark Dickinson · 8 years ago
  26. 31ba1c3 Issue #27427: Additional tests for the math module. Thanks Francisco Couzo. by Mark Dickinson · 8 years ago
  27. 8574654 Issue #27953: skip failing math and cmath tests for tan on OS X 10.4. by Mark Dickinson · 8 years ago
  28. 96f774d Issue #26040: Improve test_math and test_cmath coverage and rigour. Thanks Jeff Allen. by Mark Dickinson · 8 years ago
  29. 0a891d7 Issue #12345: Add mathemathcal constant tau to math and cmath. by Guido van Rossum · 8 years ago
  30. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  31. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  32. e437a10 Issue #23277: Remove unused imports in tests. by Serhiy Storchaka · 8 years ago
  33. d5519ed Issue #19543: Implementation of isclose as per PEP 485 by Tal Einat · 9 years ago
  34. 48e47aa Issue #22486: Added the math.gcd() function. The fractions.gcd() function now is by Serhiy Storchaka · 9 years ago
  35. a5d0c7c Issue #23185: add math.inf and math.nan constants. by Mark Dickinson · 10 years ago
  36. 5990d28 Issue #20539: Improve math.factorial error messages and types for large inputs. by Mark Dickinson · 10 years ago
  37. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  38. ebbbdaf (Merge 3.2) Close #12230: Mac OS X Tiger (10.4) has a kernel bug: sometimes, by Victor Stinner · 13 years ago
  39. fce9233 test.support: add requires_mac_ver() function by Victor Stinner · 13 years ago
  40. cd9dd37 Issue #11888: skip some log2 tests on Mac OS X Tiger by Victor Stinner · 13 years ago
  41. df77e3d Issue #11188: In log2 tests, create powers of 2 using ldexp(1, n) instead of the less reliable 2.0**n. by Mark Dickinson · 13 years ago
  42. fa0e3d5 Issue #11888: Add log2 function to math module. Patch written by Mark Dickinson. by Victor Stinner · 13 years ago
  43. 5bc7a44 test_math.py: Use correct signs on zeros for expected fmod results. by Mark Dickinson · 13 years ago
  44. 0cc28b7 Remove an unused import and an unused local definition from test_math.py. by Mark Dickinson · 13 years ago
  45. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  46. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  47. f24a0d9 Issue #10624: Move requires_IEEE_754 into test.support. I'll fix up other uses of it shortly. by Eric Smith · 14 years ago
  48. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  49. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  50. be3da38 Issue #10337: skip tests of tanh() sign in test_math and test_cmath if tanh() by Victor Stinner · 14 years ago
  51. 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
  52. 8e0c996 Issue #9165: Add math.isfinite and cmath.isfinite. by Mark Dickinson · 14 years ago
  53. be64d95 Issue #9186: log1p(-1.0) should raise ValueError, not OverflowError. by Mark Dickinson · 14 years ago
  54. 97c694b looking up on the type is correct, so this isn't an XXX by Benjamin Peterson · 14 years ago
  55. bcdf9da Merged revisions 81967 via svnmerge from by Mark Dickinson · 14 years ago
  56. 4c8a9a2 Issue #8692: Improve performance of math.factorial: by Mark Dickinson · 14 years ago
  57. 3d9fa6d Merged revisions 81127 via svnmerge from by Mark Dickinson · 14 years ago
  58. 91f021f Merged revisions 81126 via svnmerge from by Mark Dickinson · 14 years ago
  59. f573253 Merged revisions 78045 via svnmerge from by Mark Dickinson · 14 years ago
  60. 06b59e0 Merged revisions 78041 via svnmerge from by Mark Dickinson · 14 years ago
  61. 664b511 Merged revisions 76861 via svnmerge from by Mark Dickinson · 15 years ago
  62. 05d2e08 Merged revisions 76755 via svnmerge from by Mark Dickinson · 15 years ago
  63. d412ab5 Merged revisions 75454 via svnmerge from by Mark Dickinson · 15 years ago
  64. 2d53bde Merged revisions 75157 via svnmerge from by Mark Dickinson · 15 years ago
  65. 12c4bdb Merged revisions 75117 via svnmerge from by Mark Dickinson · 15 years ago
  66. 6356623 Merged revisions 74925 via svnmerge from by Mark Dickinson · 15 years ago
  67. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  68. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  69. 5c56708 Merged revisions 71837-71838 via svnmerge from by Mark Dickinson · 15 years ago
  70. aa7633a Merged revisions 65258,65292,65299,65308-65309,65315,65326 via svnmerge from by Mark Dickinson · 16 years ago
  71. c28e1fa Merged revisions 64002-64003,64012,64036-64037,64047,64050-64052,64054-64055,64066,64071 via svnmerge from by Georg Brandl · 16 years ago
  72. 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
  73. 2b7411d Merged revisions 63542-63544,63546,63553,63563-63564,63567,63569,63576 via svnmerge from by Benjamin Peterson · 16 years ago
  74. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  75. 6461e10 Merged revisions 62914-62916,62918-62919,62921-62922,62924-62942,62944-62945,62947-62949 via svnmerge from by Alexandre Vassalotti · 16 years ago
  76. a0de26c Make floating-point exception error messages slightly more verbose: in by Mark Dickinson · 16 years ago
  77. e57950f Merged revisions 62420-62421,62423-62424 via svnmerge from by Christian Heimes · 16 years ago
  78. 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
  79. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago
  80. 400adb0 Merged revisions 60475-60479,60481-60488 via svnmerge from by Christian Heimes · 16 years ago
  81. c215583 Make math.floor and math.ceil return ints instead of floats. by Jeffrey Yasskin · 17 years ago
  82. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  83. 13e05de Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__ by Guido van Rossum · 17 years ago
  84. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  85. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  86. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  87. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  88. 72a6ddb Expand log() tests to include long integers. by Raymond Hettinger · 22 years ago
  89. 866964c Apply SF patch 652930: Add optional base argument to math.log(x[, base]). by Raymond Hettinger · 22 years ago
  90. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  91. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  92. 8ac1495 Whitespace normalization. by Tim Peters · 22 years ago
  93. 64108af Adds tests for degrees() and radians() functions added to mathmodule. by Raymond Hettinger · 22 years ago
  94. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 23 years ago
  95. 4642cb9 Reverting the "unixware7" patch: atan2(0, 1) should be 0, regardless of by Tim Peters · 23 years ago
  96. 2242f2f Unixware 7 support by Billy G. Allie (SF patch 413011) by Guido van Rossum · 23 years ago
  97. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  98. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  99. 98c8184 Test for math.* exceptional behavior only in verbose mode, so that the by Tim Peters · 24 years ago
  100. cb5b5ba A Mystery: I somehow managed to delete the last two lines of my test_math.py by Tim Peters · 24 years ago