summaryrefslogtreecommitdiff
path: root/Modules/_math.c
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 82607 via svnmerge fromMark Dickinson2010-07-061-20/+23
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82607 | mark.dickinson | 2010-07-06 16:00:40 +0100 (Tue, 06 Jul 2010) | 1 line Indentation and PEP 7 fixes. ........
* Merged revisions 82595 via svnmerge fromMark Dickinson2010-07-051-8/+8
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82595 | mark.dickinson | 2010-07-05 21:14:26 +0100 (Mon, 05 Jul 2010) | 1 line Post-detabification cleanup. ........
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-103/+103
|
* Inverse hyperbolic trigonometric functions should call m_log1p, not log1p.Mark Dickinson2009-12-211-4/+5
|
* Issue #7518: Move substitute definitions of C99 math functions fromMark Dickinson2009-12-211-1/+198
| | | | pymath.c to Modules/_math.c.
* Issue #3366: Add expm1 function to math module. Thanks Eric Smith forMark Dickinson2009-12-161-0/+31
testing on Windows.