| Commit message (Expand) | Author | Age | Files | Lines |
* | remove redundant sentence | Benjamin Peterson | 2008-12-20 | 1 | -1/+1 |
|
|
* | beef up docstring | Benjamin Peterson | 2008-12-20 | 1 | -1/+4 |
|
|
* | Issues #3167, #3682: tests for math.log and math.log10 were failing on | Mark Dickinson | 2008-12-11 | 1 | -3/+55 |
|
|
* | Replace math.sum with math.fsum in a couple of comments | Mark Dickinson | 2008-07-30 | 1 | -2/+2 |
|
|
* | Rename math.sum to math.fsum | Mark Dickinson | 2008-07-30 | 1 | -16/+16 |
|
|
* | Fix special-value handling for math.sum. | Mark Dickinson | 2008-07-30 | 1 | -38/+54 |
|
|
* | Fix another typo in math_sum comment | Mark Dickinson | 2008-06-20 | 1 | -1/+1 |
|
|
* | Fix comment typos | Andrew M. Kuchling | 2008-06-20 | 1 | -2/+2 |
|
|
* | Fix double decref. | Raymond Hettinger | 2008-06-18 | 1 | -1/+0 |
|
|
* | Issue 3118: make test_math pass on Ubuntu/ia64. exp(-745.0) was raising | Mark Dickinson | 2008-06-17 | 1 | -3/+8 |
|
|
* | Unhappy buildbots. Revert 64052. Long doubles have unexpected effects on so... | Raymond Hettinger | 2008-06-09 | 1 | -20/+24 |
|
|
* | Address double-rounding scenarios by setting all variables to long doubles. | Raymond Hettinger | 2008-06-09 | 1 | -24/+19 |
|
|
* | Issue #2138: Add math.factorial(). | Raymond Hettinger | 2008-06-09 | 1 | -0/+50 |
|
|
* | * Mark intermedidate computes values (hi, lo, yr) as volatile. | Raymond Hettinger | 2008-05-30 | 1 | -19/+31 |
|
|
* | Fix two typos. | Raymond Hettinger | 2008-05-29 | 1 | -2/+2 |
|
|
* | Tweak the comments and formatting. | Raymond Hettinger | 2008-05-23 | 1 | -76/+47 |
|
|
* | Issue #2819: Add math.sum, a function that sums a sequence of floats | Mark Dickinson | 2008-05-23 | 1 | -0/+223 |
|
|
* | Issue #2487. math.ldexp(x, n) raised OverflowError when n was large and | Mark Dickinson | 2008-05-09 | 1 | -12/+54 |
|
|
* | Silence 'r may be used uninitialized' compiler warning. | Mark Dickinson | 2008-04-21 | 1 | -0/+1 |
|
|
* | math.atan2 is misbehaving on Windows; this patch | Mark Dickinson | 2008-04-20 | 1 | -1/+37 |
|
|
* | Yet more explicit special case handling to make | Mark Dickinson | 2008-04-20 | 1 | -47/+55 |
|
|
* | FreeBSD doesn't follow C99 for modf(inf); so add explicit | Mark Dickinson | 2008-04-20 | 1 | -0/+9 |
|
|
* | Additional special-case handling for math.pow. | Mark Dickinson | 2008-04-19 | 1 | -6/+13 |
|
|
* | Additional tests for math.pow, and extra special-case | Mark Dickinson | 2008-04-19 | 1 | -0/+11 |
|
|
* | I finally got the time to update and merge Mark's and my trunk-math branch. T... | Christian Heimes | 2008-04-18 | 1 | -96/+344 |
|
|
* | Neaten-up a bit. | Raymond Hettinger | 2008-02-02 | 1 | -5/+1 |
|
|
* | Move __builtins__.trunc() to math.trunc() per | Jeffrey Yasskin | 2008-02-01 | 1 | -0/+16 |
|
|
* | setup.py doesn't pick up changes to a header file | Christian Heimes | 2008-01-25 | 1 | -4/+4 |
|
|
* | Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64) | Neal Norwitz | 2008-01-25 | 1 | -0/+5 |
|
|
* | Continue rolling back pep-3141 changes that changed behavior from 2.5. This | Jeffrey Yasskin | 2008-01-05 | 1 | -44/+6 |
|
|
* | Fixed math.copysign() on Windows | Christian Heimes | 2008-01-04 | 1 | -6/+8 |
|
|
* | Added copysign(x, y) function to the math module | Christian Heimes | 2008-01-03 | 1 | -0/+11 |
|
|
* | Added math.isinf() and math.isnan() | Christian Heimes | 2008-01-03 | 1 | -6/+34 |
|
|
* | Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just | Jeffrey Yasskin | 2008-01-03 | 1 | -6/+44 |
|
|
* | Speed up function calls into the math module by using METH_O. | Neal Norwitz | 2006-11-19 | 1 | -63/+55 |
|
|
* | Whoops. | Georg Brandl | 2006-05-29 | 1 | -2/+6 |
|
|
* | Convert more modules to METH_VARARGS. | Georg Brandl | 2006-05-29 | 1 | -6/+2 |
|
|
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
|
|
* | Make that a C, not a C++, comment. | Michael W. Hudson | 2005-04-06 | 1 | -1/+1 |
|
|
* | Add a comment explaining the import of longintrepr.h. | Michael W. Hudson | 2005-04-06 | 1 | -1/+1 |
|
|
* | Patch #871657: Set EDOM for `nan' return values on FreeBSD and OpenBSD. | Hye-Shik Chang | 2004-03-22 | 1 | -5/+5 |
|
|
* | Getting rid of support for the ancient Apple MPW compiler. | Jack Jansen | 2003-11-19 | 1 | -13/+0 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -6/+2 |
|
|
* | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 1 | -2/+2 |
|
|
* | Apply SF patch 652930: Add optional base argument to math.log(x[, base]). | Raymond Hettinger | 2002-12-14 | 1 | -15/+47 |
|
|
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -1/+1 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -18/+18 |
|
|
* | Added degrees() and radians() to mathmodule. Closes patch 552452 and | Raymond Hettinger | 2002-05-13 | 1 | -0/+27 |
|
|
* | Revert parts of patch #453627, documenting the resulting test failures | Martin v. Löwis | 2001-09-06 | 1 | -17/+1 |
|
|
* | Rework the way we try to check for libm overflow, given that C99 no longer | Tim Peters | 2001-09-05 | 1 | -29/+13 |
|
|