summaryrefslogtreecommitdiff
path: root/Modules/mathmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Raymond Hettinger2016-08-301-1/+1
* Issue #12345: Add mathemathcal constant tau to math and cmath.Guido van Rossum2016-08-151-0/+1
* Issue #26512: Merge rounding doc from 3.5Martin Panter2016-05-081-4/+4
|\
| * Issue #26512: Clarify Integral; tidy up table of rounding functionsMartin Panter2016-05-081-4/+4
* | Issue #26898: Fix typo in math.isclose() docstringBerker Peksag2016-05-011-1/+1
|\ \ | |/
| * Issue #26898: Fix typo in math.isclose() docstringBerker Peksag2016-05-011-1/+1
* | Merge for issue #26114Brett Cannon2016-01-151-2/+2
|\ \ | |/ |/|
| * Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-2/+2
* | Issue #26114: Remove a reference to 'Numerical Recipes'.Brett Cannon2016-01-151-3/+2
|/
* Issue #19543: Implementation of isclose as per PEP 485Tal Einat2015-05-311-0/+79
* Issue #22486: Added the math.gcd() function. The fractions.gcd() function no...Serhiy Storchaka2015-05-131-0/+28
* Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-121-1/+1
|\
| * Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-121-1/+1
* | Issue #21092: Merge from 3.4.Mark Dickinson2015-01-111-3/+3
|\ \ | |/
| * Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hy...Mark Dickinson2015-01-111-3/+3
* | Issue #23185: add math.inf and math.nan constants.Mark Dickinson2015-01-111-1/+34
* | Issue #22207: Fix "comparison between signed and unsigned integers" warning inVictor Stinner2014-08-171-1/+1
* | Issue #20539: Improve math.factorial error messages and types for large inputs.Mark Dickinson2014-04-101-4/+12
|/
* #12211: remove paragraph about NaNsAndrew Kuchling2014-02-161-3/+1
* #12211: clarify math.copysign() documentation and docstringAndrew Kuchling2014-02-161-1/+5
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-7/+6
* Issue #16305: Merge fix from 3.2.Mark Dickinson2012-10-251-4/+3
|\
| * Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and ...Mark Dickinson2012-10-251-4/+3
* | merge 3.2Benjamin Peterson2012-03-131-13/+74
|\ \ | |/ |/|
| * use the static identifier api for looking up special methodsBenjamin Peterson2012-01-221-6/+6
| * Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-291-1/+1
| * Return +-Py_HUGE_VAL for tgamma(+-0) instead of risking FP exceptions by comp...Mark Dickinson2011-09-251-1/+2
| * Issue #11888: Use system log2() when availableVictor Stinner2011-05-091-0/+4
| * Grammatical fix for a comment for log2, to avoid referring to an *algorithm* ...Mark Dickinson2011-05-091-1/+3
| * Fix cut-and-paste typo in comment: log10 -> log2.Mark Dickinson2011-05-091-1/+1
| * Issue #11888: Add log2 function to math module. Patch written by MarkVictor Stinner2011-05-091-0/+59
| * Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2Jesus Cea2011-03-141-5/+0
* | fix indentationBenjamin Peterson2012-03-131-7/+7
|/
* Issue #9599: Further accuracy tweaks to loghelper. For an integer n that's ...Mark Dickinson2010-09-291-14/+22
* Issue #9599: Tweak loghelper algorithm to return slightly improved results f...Mark Dickinson2010-09-281-6/+8
* Improve docstrings for isnan, isinf and isfinite.Mark Dickinson2010-07-111-3/+3
* Issue #9165: Add math.isfinite and cmath.isfinite.Mark Dickinson2010-07-111-0/+14
* Fix typo in a comment in mathmodule.c.Ezio Melotti2010-07-081-1/+1
* Issue #9186: log1p(-1.0) should raise ValueError, not OverflowError.Mark Dickinson2010-07-071-1/+1
* Minor refactoring in lgamma code, for clarity.Mark Dickinson2010-07-071-14/+10
* Style/consistency nit: make math_floor and math_ceil code look the same.Mark Dickinson2010-07-021-6/+4
* fix lookup of __ceil__Benjamin Peterson2010-07-021-9/+9
* account for different ref counting semantics of _PyObject_LookupSpecialBenjamin Peterson2010-07-021-4/+8
* correctly lookup __trunc__ and __floor__Benjamin Peterson2010-07-011-20/+11
* Merged revisions 82221 via svnmerge fromMark Dickinson2010-06-251-11/+11
* Merged revisions 81967 via svnmerge fromMark Dickinson2010-06-131-6/+16
* Issue #8692: Improve performance of math.factorial:Mark Dickinson2010-05-151-20/+240
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1002/+1002
* Merged revisions 77275 via svnmerge fromMark Dickinson2010-01-031-16/+6
* Merged revisions 77234 via svnmerge fromMark Dickinson2010-01-021-12/+15