summaryrefslogtreecommitdiffstats
path: root/Modules/mathmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Neaten-up a bit.Raymond Hettinger2008-02-021-5/+1
* Move __builtins__.trunc() to math.trunc() perJeffrey Yasskin2008-02-011-0/+16
* setup.py doesn't pick up changes to a header fileChristian Heimes2008-01-251-4/+4
* Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64)Neal Norwitz2008-01-251-0/+5
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-051-44/+6
* Fixed math.copysign() on WindowsChristian Heimes2008-01-041-6/+8
* Added copysign(x, y) function to the math moduleChristian Heimes2008-01-031-0/+11
* Added math.isinf() and math.isnan()Christian Heimes2008-01-031-6/+34
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-6/+44
* Speed up function calls into the math module by using METH_O.Neal Norwitz2006-11-191-63/+55
* Whoops.Georg Brandl2006-05-291-2/+6
* Convert more modules to METH_VARARGS.Georg Brandl2006-05-291-6/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Make that a C, not a C++, comment.Michael W. Hudson2005-04-061-1/+1
* Add a comment explaining the import of longintrepr.h.Michael W. Hudson2005-04-061-1/+1
* Patch #871657: Set EDOM for `nan' return values on FreeBSD and OpenBSD.Hye-Shik Chang2004-03-221-5/+5
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-191-13/+0
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-6/+2
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-2/+2
* Apply SF patch 652930: Add optional base argument to math.log(x[, base]).Raymond Hettinger2002-12-141-15/+47
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-18/+18
* Added degrees() and radians() to mathmodule. Closes patch 552452 andRaymond Hettinger2002-05-131-0/+27
* Revert parts of patch #453627, documenting the resulting test failuresMartin v. Löwis2001-09-061-17/+1
* Rework the way we try to check for libm overflow, given that C99 no longerTim Peters2001-09-051-29/+13
* Patch #453627: Define the following macros when compiling on a UnixWare 7.x s...Martin v. Löwis2001-09-051-1/+17
* loghelper(): Try to nudge the compiler into doing mults in an order thatTim Peters2001-09-051-1/+1
* Return reasonable results for math.log(long) and math.log10(long) (we wereTim Peters2001-09-051-4/+64
* Mechanical fiddling to make this easier to work with in my editor.Tim Peters2001-09-041-18/+12
* Part of SF patch [#431848] mathmodule.c: doc strings & conversion, fromTim Peters2001-08-071-15/+18
* annoying whitespace inconsistencyPeter Schneider-Kamp2001-06-101-1/+1
* Repaired a comment and asserted a precondition.Tim Peters2000-10-121-1/+2
* Stop raising OverflowError on underflows reported by libm (errno==ERANGE andTim Peters2000-10-121-18/+42
* Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough.Tim Peters2000-09-161-1/+2
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Do the absolute minimal amount of modifications to eradicateBarry Warsaw2000-09-011-2/+1
* remove all occurence of math.rint() from the sourcesPeter Schneider-Kamp2000-08-101-7/+0
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-2/+0
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-2/+2
* Typo repair in docstring -- my fault.Tim Peters2000-07-031-1/+1
* ANSI-fication, remove Py_PROTO, etc.Fred Drake2000-07-031-84/+74
* Repair docs for math.frexp (they were wrong).Tim Peters2000-07-021-1/+3
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* The addition of rint() (by Peter Schneider-Kamp; I forgot to mentionGuido van Rossum2000-05-111-0/+4
* Added math.rint() -- round according to current IEEE754 modeGuido van Rossum2000-05-111-0/+3
* Trent Mick:Guido van Rossum2000-05-081-4/+4
* Correctly document atan2.Guido van Rossum1998-12-081-1/+1
* Added Doc strings -- by Chris Petrilli.Guido van Rossum1998-12-041-50/+97
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1