summaryrefslogtreecommitdiffstats
path: root/Modules/mathmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Revert the temporary change in r62624Mark Dickinson2008-05-091-11/+3
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-0/+1
* One more attempt to track down Debian/alpha test_math failures:Mark Dickinson2008-05-021-3/+11
* Whoops. errno should only be tested when the result is finite.Mark Dickinson2008-05-011-4/+4
* Make floating-point exception error messages slightly more verbose: inMark Dickinson2008-04-301-10/+13
* Merged revisions 62420-62421,62423-62424 via svnmerge fromChristian Heimes2008-04-211-1/+37
* Merged revisions 62386-62387,62389-62393,62396,62400-62402,62407,62409-62410,...Christian Heimes2008-04-201-30/+65
* Merged revisions 62380,62382-62383 via svnmerge fromChristian Heimes2008-04-191-100/+349
* Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,...Christian Heimes2008-02-031-2/+1
* Merged revisions 60475-60479,60481-60488 via svnmerge fromChristian Heimes2008-02-011-0/+34
* Merged revisions 60379-60382 via svnmerge fromChristian Heimes2008-01-281-2/+2
* Merged revisions 60284-60349 via svnmerge fromChristian Heimes2008-01-271-3/+3
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-251-0/+5
* Make math.floor and math.ceil return ints instead of floats.Jeffrey Yasskin2008-01-051-6/+19
* Merged revisions 59680-59695 via svnmerge fromChristian Heimes2008-01-041-6/+8
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-6/+45
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-2/+2
* 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