summaryrefslogtreecommitdiff
path: root/Modules/cmathmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Patch #826074: cmath.log optional base argument, fixes #823209Raymond Hettinger2004-06-141-7/+27
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* staticforward bites the dust.Jeremy Hylton2002-07-171-3/+3
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-34/+34
* Use the PyModule_*() API instead of manipulating the module dictionaryFred Drake2002-04-011-7/+5
* SF bug 525705: [2.2] underflow raise OverflowException.Tim Peters2002-03-091-2/+1
* Revert parts of patch #453627, documenting the resulting test failuresMartin v. Löwis2001-09-061-18/+2
* Rework the way we try to check for libm overflow, given that C99 no longerTim Peters2001-09-051-15/+2
* Patch #453627: Define the following macros when compiling on a UnixWare 7.x s...Martin v. Löwis2001-09-051-2/+18
* asin micro-optimization suggested in email.Tim Peters2001-02-221-2/+3
* Bug #133297: cmath.asin is the same as cmath.asinh.Tim Peters2001-02-211-8/+9
* Rename some constants for easier readability.Tim Peters2001-02-201-8/+8
* Mechanical edits just so I can read it.Tim Peters2001-02-201-142/+138
* Use METH_VARARGS instead of numeric constant 1 in method def. tablesAndrew M. Kuchling2000-08-031-16/+32
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-2/+0
* Fix typo in previous patch.Thomas Wouters2000-07-241-3/+3
* *** empty log message ***Thomas Wouters2000-07-241-3/+3
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-2/+2
* ANSI-ficationPeter Schneider-Kamp2000-07-101-38/+19
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-1/+1
* Patch by Nadav Horesh to make acosh and asinh better.Guido van Rossum2000-06-301-7/+12
* Docstring fix: acosh() returns the hyperbolic arccosine, not theFred Drake1999-03-161-1/+1
* Jim Ahlstrom patch: Watcom chokes on a long expression in c_asinh().Guido van Rossum1999-01-141-1/+5
* Added Doc strings -- by Chris Petrilli.Guido van Rossum1998-12-041-17/+119
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* New form of PyFPE_END_PROTECT macro.Guido van Rossum1997-03-141-1/+1
* Changes for Lee Busby's SIGFPE patch set.Guido van Rossum1997-02-141-0/+2
* Removed redundant inclusion of <errno.h> (sorry, Roj!).Guido van Rossum1996-12-101-2/+0
* Renamed GrandlyRoger E. Masse1996-12-091-19/+19
* Keep gcc -Wall happy.Guido van Rossum1996-12-051-0/+2
* complex -> Py_complexGuido van Rossum1996-07-211-56/+56
* Made all c_* symbols static.Guido van Rossum1996-05-241-20/+20
* complex mathGuido van Rossum1996-01-121-0/+314