summaryrefslogtreecommitdiff
path: root/Modules/mathmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__Guido van Rossum2007-08-231-6/+44
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-63/+55
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-1/+1
* 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
* Removed MetroWerks workaround, replaced by defines in mymath.h (Jack)Guido van Rossum1997-05-201-5/+0
* New form of PyFPE_END_PROTECT macro.Guido van Rossum1997-03-141-3/+3
* Changes for Lee Busby's SIGFPE patch set.Guido van Rossum1997-02-141-0/+6
* Removed references to getdoublearg and get2doublearg rename macros andRoger E. Masse1996-12-181-8/+5
* Correct *another* mistake (initmath() always fell through to fatal error).Guido van Rossum1996-12-181-0/+1
* Correct 1-char typo / syntax error.Guido van Rossum1996-12-181-1/+1
* Better error checking in initmath().Barry Warsaw1996-12-171-2/+13
* RenamedBarry Warsaw1996-12-091-43/+42