summaryrefslogtreecommitdiff
path: root/Modules/mathmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-1/+1
* Issue #26114: Remove mention of 'Numerical Recipes'.Brett Cannon2016-01-151-3/+2
* Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hy...Mark Dickinson2015-01-111-3/+3
* Issue #18739: Fix inconsistent results from math.log(n) and math.log(long(n))Mark Dickinson2013-10-131-12/+22
* Fix indentation of Python code example in C comment.Mark Dickinson2010-06-251-11/+11
* Issue #8986: erfc was raising OverflowError on Linux for arguments inMark Dickinson2010-06-131-6/+16
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-935/+935
* Make use of PyLong_AsLongAndOverflow in math_ldexp.Mark Dickinson2010-01-031-20/+7
* Refactor some longobject internals: PyLong_AsDouble and _PyLong_AsScaledDoubleMark Dickinson2010-01-021-12/+15
* Issue #7518: Move substitute definitions of C99 math functions fromMark Dickinson2009-12-211-4/+4
* math.factorial depends on PyLong_AsLong correctly converting floats; rewriteMark Dickinson2009-12-201-2/+9
* Issue #3366: Add error function and complementary error function toMark Dickinson2009-12-191-0/+142
* Issue #3366: Add expm1 function to math module. Thanks Eric Smith forMark Dickinson2009-12-161-0/+6
* Issue #3366: Add lgamma function to math module.Mark Dickinson2009-12-111-0/+57
* Use a single style for all the docstrings in the math module.Georg Brandl2009-10-291-15/+19
* Use the correct function name in docstring.Georg Brandl2009-10-291-1/+1
* Issue #3366: Add gamma function to math module.Mark Dickinson2009-09-281-35/+325
* remove redundant sentenceBenjamin Peterson2008-12-201-1/+1
* beef up docstringBenjamin Peterson2008-12-201-1/+4
* Issues #3167, #3682: tests for math.log and math.log10 were failing onMark Dickinson2008-12-111-3/+55
* Replace math.sum with math.fsum in a couple of commentsMark Dickinson2008-07-301-2/+2
* Rename math.sum to math.fsumMark Dickinson2008-07-301-16/+16
* Fix special-value handling for math.sum.Mark Dickinson2008-07-301-38/+54
* Fix another typo in math_sum commentMark Dickinson2008-06-201-1/+1
* Fix comment typosAndrew M. Kuchling2008-06-201-2/+2
* Fix double decref.Raymond Hettinger2008-06-181-1/+0
* Issue 3118: make test_math pass on Ubuntu/ia64. exp(-745.0) was raisingMark Dickinson2008-06-171-3/+8
* Unhappy buildbots. Revert 64052. Long doubles have unexpected effects on so...Raymond Hettinger2008-06-091-20/+24
* Address double-rounding scenarios by setting all variables to long doubles.Raymond Hettinger2008-06-091-24/+19
* Issue #2138: Add math.factorial().Raymond Hettinger2008-06-091-0/+50
* * Mark intermedidate computes values (hi, lo, yr) as volatile.Raymond Hettinger2008-05-301-19/+31
* Fix two typos.Raymond Hettinger2008-05-291-2/+2
* Tweak the comments and formatting.Raymond Hettinger2008-05-231-76/+47
* Issue #2819: Add math.sum, a function that sums a sequence of floatsMark Dickinson2008-05-231-0/+223
* Issue #2487. math.ldexp(x, n) raised OverflowError when n was large andMark Dickinson2008-05-091-12/+54
* Silence 'r may be used uninitialized' compiler warning.Mark Dickinson2008-04-211-0/+1
* math.atan2 is misbehaving on Windows; this patchMark Dickinson2008-04-201-1/+37
* Yet more explicit special case handling to makeMark Dickinson2008-04-201-47/+55
* FreeBSD doesn't follow C99 for modf(inf); so add explicitMark Dickinson2008-04-201-0/+9
* Additional special-case handling for math.pow.Mark Dickinson2008-04-191-6/+13
* Additional tests for math.pow, and extra special-caseMark Dickinson2008-04-191-0/+11
* I finally got the time to update and merge Mark's and my trunk-math branch. T...Christian Heimes2008-04-181-96/+344
* 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