| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Patch #453627: Define the following macros when compiling on a UnixWare 7.x s... | Martin v. Löwis | 2001-09-05 | 1 | -1/+17 |
|
|
* | loghelper(): Try to nudge the compiler into doing mults in an order that | Tim Peters | 2001-09-05 | 1 | -1/+1 |
|
|
* | Return reasonable results for math.log(long) and math.log10(long) (we were | Tim Peters | 2001-09-05 | 1 | -4/+64 |
|
|
* | Mechanical fiddling to make this easier to work with in my editor. | Tim Peters | 2001-09-04 | 1 | -18/+12 |
|
|
* | Part of SF patch [#431848] mathmodule.c: doc strings & conversion, from | Tim Peters | 2001-08-07 | 1 | -15/+18 |
|
|
* | annoying whitespace inconsistency | Peter Schneider-Kamp | 2001-06-10 | 1 | -1/+1 |
|
|
* | Repaired a comment and asserted a precondition. | Tim Peters | 2000-10-12 | 1 | -1/+2 |
|
|
* | Stop raising OverflowError on underflows reported by libm (errno==ERANGE and | Tim Peters | 2000-10-12 | 1 | -18/+42 |
|
|
* | Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. | Tim Peters | 2000-09-16 | 1 | -1/+2 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Do the absolute minimal amount of modifications to eradicate | Barry Warsaw | 2000-09-01 | 1 | -2/+1 |
|
|
* | remove all occurence of math.rint() from the sources | Peter Schneider-Kamp | 2000-08-10 | 1 | -7/+0 |
|
|
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -2/+0 |
|
|
* | Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', | Thomas Wouters | 2000-07-21 | 1 | -2/+2 |
|
|
* | Typo repair in docstring -- my fault. | Tim Peters | 2000-07-03 | 1 | -1/+1 |
|
|
* | ANSI-fication, remove Py_PROTO, etc. | Fred Drake | 2000-07-03 | 1 | -84/+74 |
|
|
* | Repair docs for math.frexp (they were wrong). | Tim Peters | 2000-07-02 | 1 | -1/+3 |
|
|