1. 292d351 Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,60540-60551 via svnmerge from by Christian Heimes · 17 years ago
  2. 400adb0 Merged revisions 60475-60479,60481-60488 via svnmerge from by Christian Heimes · 17 years ago
  3. fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 17 years ago
  4. af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 17 years ago
  5. 969fe57 Merged revisions 60245-60277 via svnmerge from by Christian Heimes · 17 years ago
  6. c215583 Make math.floor and math.ceil return ints instead of floats. by Jeffrey Yasskin · 17 years ago
  7. a34706f Merged revisions 59680-59695 via svnmerge from by Christian Heimes · 17 years ago
  8. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  9. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  10. 13e05de Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__ by Guido van Rossum · 17 years ago
  11. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  12. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  13. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  14. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  15. 9ef852c Make that a C, not a C++, comment. by Michael W. Hudson · 19 years ago
  16. 2ea3072 Add a comment explaining the import of longintrepr.h. by Michael W. Hudson · 19 years ago
  17. 77d9a3e Patch #871657: Set EDOM for `nan' return values on FreeBSD and OpenBSD. by Hye-Shik Chang · 20 years ago
  18. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  19. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  20. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  21. 866964c Apply SF patch 652930: Add optional base argument to math.log(x[, base]). by Raymond Hettinger · 22 years ago
  22. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  23. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  24. d6f2267 Added degrees() and radians() to mathmodule. Closes patch 552452 and by Raymond Hettinger · 22 years ago
  25. 387c547 Revert parts of patch #453627, documenting the resulting test failures instead. by Martin v. Löwis · 23 years ago
  26. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 23 years ago
  27. 655c955 Patch #453627: Define the following macros when compiling on a UnixWare 7.x system: by Martin v. Löwis · 23 years ago
  28. e5ca6c7 loghelper(): Try to nudge the compiler into doing mults in an order that by Tim Peters · 23 years ago
  29. 7852616 Return reasonable results for math.log(long) and math.log10(long) (we were by Tim Peters · 23 years ago
  30. 63c9453 Mechanical fiddling to make this easier to work with in my editor. by Tim Peters · 23 years ago
  31. fe71f81 Part of SF patch [#431848] mathmodule.c: doc strings & conversion, from by Tim Peters · 23 years ago
  32. 07c1922 annoying whitespace inconsistency by Peter Schneider-Kamp · 23 years ago
  33. 2bf405a Repaired a comment and asserted a precondition. by Tim Peters · 24 years ago
  34. 1d12061 Stop raising OverflowError on underflows reported by libm (errno==ERANGE and by Tim Peters · 24 years ago
  35. 78fc0b5 Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. by Tim Peters · 24 years ago
  36. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  37. 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
  38. 10e1bf2 remove all occurence of math.rint() from the sources by Peter Schneider-Kamp · 24 years ago
  39. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  40. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  41. 489d54e Typo repair in docstring -- my fault. by Tim Peters · 24 years ago
  42. 40c4868 ANSI-fication, remove Py_PROTO, etc. by Fred Drake · 24 years ago
  43. c9c02c4 Repair docs for math.frexp (they were wrong). by Tim Peters · 24 years ago
  44. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  45. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  46. c9a5f34 The addition of rint() (by Peter Schneider-Kamp; I forgot to mention by Guido van Rossum · 24 years ago
  47. 71260b8 Added math.rint() -- round according to current IEEE754 mode by Guido van Rossum · 24 years ago
  48. c554505 Trent Mick: by Guido van Rossum · 24 years ago
  49. b057dd8 Correctly document atan2. by Guido van Rossum · 26 years ago
  50. c6e2290 Added Doc strings -- by Chris Petrilli. by Guido van Rossum · 26 years ago
  51. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  52. 511f163 Removed MetroWerks workaround, replaced by defines in mymath.h (Jack) by Guido van Rossum · 27 years ago
  53. 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 27 years ago
  54. 52fa3a6 Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 27 years ago
  55. 20c6381 Removed references to getdoublearg and get2doublearg rename macros and by Roger E. Masse · 28 years ago
  56. 4a48809 Correct *another* mistake (initmath() always fell through to fatal error). by Guido van Rossum · 28 years ago
  57. 4c4cbf3 Correct 1-char typo / syntax error. by Guido van Rossum · 28 years ago
  58. fc93f75 Better error checking in initmath(). by Barry Warsaw · 28 years ago
  59. 8b43b19 Renamed by Barry Warsaw · 28 years ago
  60. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  61. 213a685 Move backup definition for hypot() to Python/hypot.c. by Guido van Rossum · 28 years ago
  62. 3bcf7d2 Avoid complaint about inconsistent hypot() linkage on NT. by Guido van Rossum · 28 years ago
  63. 6412b1d Hack for Mac (where fabs is not usable as a function pointer). by Guido van Rossum · 28 years ago
  64. 557d6d6 Don't make an exception for NeXT (BBUM says it's no longer needed). by Guido van Rossum · 28 years ago
  65. 7081cf5 Microsoft C changes by Guido van Rossum · 28 years ago
  66. 3206268 added default hypot() implementation by Guido van Rossum · 29 years ago
  67. 9caac91 NeXT doesn't like me to declare hypot(double, double) by Guido van Rossum · 29 years ago
  68. 6964f73 include mymath.h by Guido van Rossum · 29 years ago
  69. 27fda28 cleanup by Guido van Rossum · 30 years ago
  70. b941868 rearrange declarations somewhat by Guido van Rossum · 30 years ago
  71. 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  72. 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 30 years ago
  73. 411a8bd add hypot() by Guido van Rossum · 30 years ago
  74. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  75. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  76. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  77. 9575a44 * Microscopic corrections to make things compile on the Cray APP. by Guido van Rossum · 31 years ago
  78. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  79. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  80. df840d9 lint by Guido van Rossum · 32 years ago
  81. 444db07 Get rid of RuntimeError. by Guido van Rossum · 32 years ago
  82. 2d709b1 Get rid of AMOEBA deps; add declaration of fmod() if __STDC__ is not defined. by Guido van Rossum · 33 years ago
  83. 8832b62 Improve error handling. by Guido van Rossum · 33 years ago
  84. 98d5433 Added PROTO macro where needed. by Guido van Rossum · 33 years ago
  85. d18ad58 Added frexp, ldexp, modf, fmod. by Guido van Rossum · 33 years ago
  86. 1492c27 Add some err_errno calls that were missing by Guido van Rossum · 33 years ago
  87. 76f2f2e Apparently MPW has power() instead of pow(). by Guido van Rossum · 33 years ago
  88. 5b7f945 Moved get*doublearg() routines to modsupport.c by Guido van Rossum · 33 years ago
  89. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  90. 801f473 Add <errno.h>. by Guido van Rossum · 34 years ago
  91. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  92. eb38d24 DECREF pi and e after inserting in symbol table. by Guido van Rossum · 34 years ago
  93. 738d4dd Take out duplication of code in initmodule(). by Guido van Rossum · 34 years ago
  94. 85a5fbb Initial revision by Guido van Rossum · 34 years ago