1. fea6a94 Merged revisions 64365,64370,64406,64408-64409,64412,64416-64417,64420-64421,64425-64428 via svnmerge from by Benjamin Peterson · 16 years ago
  2. 66bada5 Quick fix for test_math failures on Solaris 10 buildbot. For future by Mark Dickinson · 16 years ago
  3. c2c5e00 Merged revisions 64349 via svnmerge from by Benjamin Peterson · 16 years ago
  4. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  5. c28e1fa Merged revisions 64002-64003,64012,64036-64037,64047,64050-64052,64054-64055,64066,64071 via svnmerge from by Georg Brandl · 16 years ago
  6. 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
  7. 2b7411d Merged revisions 63542-63544,63546,63553,63563-63564,63567,63569,63576 via svnmerge from by Benjamin Peterson · 16 years ago
  8. c1fc34a Remove duplicate check for PyLong_Check(). It was checked above. by Neal Norwitz · 16 years ago
  9. 6461e10 Merged revisions 62914-62916,62918-62919,62921-62922,62924-62942,62944-62945,62947-62949 via svnmerge from by Alexandre Vassalotti · 16 years ago
  10. b63aff1 Revert the temporary change in r62624 by Mark Dickinson · 16 years ago
  11. 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
  12. 73eada3 One more attempt to track down Debian/alpha test_math failures: by Mark Dickinson · 16 years ago
  13. de42962 Whoops. errno should only be tested when the result is finite. by Mark Dickinson · 16 years ago
  14. a0de26c Make floating-point exception error messages slightly more verbose: in by Mark Dickinson · 16 years ago
  15. e57950f Merged revisions 62420-62421,62423-62424 via svnmerge from by Christian Heimes · 16 years ago
  16. 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
  17. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago
  18. 292d351 Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,60540-60551 via svnmerge from by Christian Heimes · 16 years ago
  19. 400adb0 Merged revisions 60475-60479,60481-60488 via svnmerge from by Christian Heimes · 16 years ago
  20. fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 16 years ago
  21. af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 16 years ago
  22. 969fe57 Merged revisions 60245-60277 via svnmerge from by Christian Heimes · 16 years ago
  23. c215583 Make math.floor and math.ceil return ints instead of floats. by Jeffrey Yasskin · 17 years ago
  24. a34706f Merged revisions 59680-59695 via svnmerge from by Christian Heimes · 17 years ago
  25. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  26. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  27. 13e05de Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__ by Guido van Rossum · 17 years ago
  28. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  29. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  30. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  31. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 18 years ago
  32. 9ef852c Make that a C, not a C++, comment. by Michael W. Hudson · 19 years ago
  33. 2ea3072 Add a comment explaining the import of longintrepr.h. by Michael W. Hudson · 19 years ago
  34. 77d9a3e Patch #871657: Set EDOM for `nan' return values on FreeBSD and OpenBSD. by Hye-Shik Chang · 20 years ago
  35. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  36. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  37. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  38. 866964c Apply SF patch 652930: Add optional base argument to math.log(x[, base]). by Raymond Hettinger · 22 years ago
  39. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  40. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  41. d6f2267 Added degrees() and radians() to mathmodule. Closes patch 552452 and by Raymond Hettinger · 22 years ago
  42. 387c547 Revert parts of patch #453627, documenting the resulting test failures instead. by Martin v. Löwis · 23 years ago
  43. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 23 years ago
  44. 655c955 Patch #453627: Define the following macros when compiling on a UnixWare 7.x system: by Martin v. Löwis · 23 years ago
  45. e5ca6c7 loghelper(): Try to nudge the compiler into doing mults in an order that by Tim Peters · 23 years ago
  46. 7852616 Return reasonable results for math.log(long) and math.log10(long) (we were by Tim Peters · 23 years ago
  47. 63c9453 Mechanical fiddling to make this easier to work with in my editor. by Tim Peters · 23 years ago
  48. fe71f81 Part of SF patch [#431848] mathmodule.c: doc strings & conversion, from by Tim Peters · 23 years ago
  49. 07c1922 annoying whitespace inconsistency by Peter Schneider-Kamp · 23 years ago
  50. 2bf405a Repaired a comment and asserted a precondition. by Tim Peters · 24 years ago
  51. 1d12061 Stop raising OverflowError on underflows reported by libm (errno==ERANGE and by Tim Peters · 24 years ago
  52. 78fc0b5 Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. by Tim Peters · 24 years ago
  53. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  54. 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
  55. 10e1bf2 remove all occurence of math.rint() from the sources by Peter Schneider-Kamp · 24 years ago
  56. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  57. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  58. 489d54e Typo repair in docstring -- my fault. by Tim Peters · 24 years ago
  59. 40c4868 ANSI-fication, remove Py_PROTO, etc. by Fred Drake · 24 years ago
  60. c9c02c4 Repair docs for math.frexp (they were wrong). by Tim Peters · 24 years ago
  61. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  62. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  63. c9a5f34 The addition of rint() (by Peter Schneider-Kamp; I forgot to mention by Guido van Rossum · 24 years ago
  64. 71260b8 Added math.rint() -- round according to current IEEE754 mode by Guido van Rossum · 24 years ago
  65. c554505 Trent Mick: by Guido van Rossum · 24 years ago
  66. b057dd8 Correctly document atan2. by Guido van Rossum · 26 years ago
  67. c6e2290 Added Doc strings -- by Chris Petrilli. by Guido van Rossum · 26 years ago
  68. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  69. 511f163 Removed MetroWerks workaround, replaced by defines in mymath.h (Jack) by Guido van Rossum · 27 years ago
  70. 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 27 years ago
  71. 52fa3a6 Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 27 years ago
  72. 20c6381 Removed references to getdoublearg and get2doublearg rename macros and by Roger E. Masse · 28 years ago
  73. 4a48809 Correct *another* mistake (initmath() always fell through to fatal error). by Guido van Rossum · 28 years ago
  74. 4c4cbf3 Correct 1-char typo / syntax error. by Guido van Rossum · 28 years ago
  75. fc93f75 Better error checking in initmath(). by Barry Warsaw · 28 years ago
  76. 8b43b19 Renamed by Barry Warsaw · 28 years ago
  77. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  78. 213a685 Move backup definition for hypot() to Python/hypot.c. by Guido van Rossum · 28 years ago
  79. 3bcf7d2 Avoid complaint about inconsistent hypot() linkage on NT. by Guido van Rossum · 28 years ago
  80. 6412b1d Hack for Mac (where fabs is not usable as a function pointer). by Guido van Rossum · 28 years ago
  81. 557d6d6 Don't make an exception for NeXT (BBUM says it's no longer needed). by Guido van Rossum · 28 years ago
  82. 7081cf5 Microsoft C changes by Guido van Rossum · 28 years ago
  83. 3206268 added default hypot() implementation by Guido van Rossum · 29 years ago
  84. 9caac91 NeXT doesn't like me to declare hypot(double, double) by Guido van Rossum · 29 years ago
  85. 6964f73 include mymath.h by Guido van Rossum · 29 years ago
  86. 27fda28 cleanup by Guido van Rossum · 29 years ago
  87. b941868 rearrange declarations somewhat by Guido van Rossum · 30 years ago
  88. 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  89. 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 30 years ago
  90. 411a8bd add hypot() by Guido van Rossum · 30 years ago
  91. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  92. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  93. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  94. 9575a44 * Microscopic corrections to make things compile on the Cray APP. by Guido van Rossum · 31 years ago
  95. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  96. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  97. df840d9 lint by Guido van Rossum · 32 years ago
  98. 444db07 Get rid of RuntimeError. by Guido van Rossum · 32 years ago
  99. 2d709b1 Get rid of AMOEBA deps; add declaration of fmod() if __STDC__ is not defined. by Guido van Rossum · 33 years ago
  100. 8832b62 Improve error handling. by Guido van Rossum · 33 years ago