blob: 48c981a5ab09079cf850f89883a999e02f43c3a5 [file] [log] [blame]
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001/* Math module -- standard C math library functions, pi and e */
2
Barry Warsaw8b43b191996-12-09 22:32:36 +00003#include "Python.h"
Tim Peters78526162001-09-05 00:53:45 +00004#include "longintrepr.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Guido van Rossum7081cf51996-05-23 22:56:19 +00006#ifndef _MSC_VER
Guido van Rossumb9418681995-01-12 11:28:16 +00007#ifndef __STDC__
Fred Drake40c48682000-07-03 18:11:56 +00008extern double fmod (double, double);
9extern double frexp (double, int *);
10extern double ldexp (double, int);
11extern double modf (double, double *);
Guido van Rossum7081cf51996-05-23 22:56:19 +000012#endif /* __STDC__ */
13#endif /* _MSC_VER */
14
Tim Peters1d120612000-10-12 06:10:25 +000015/* Call is_error when errno != 0, and where x is the result libm
16 * returned. is_error will usually set up an exception and return
17 * true (1), but may return false (0) without setting up an exception.
18 */
19static int
20is_error(double x)
Guido van Rossum8832b621991-12-16 15:44:24 +000021{
Tim Peters1d120612000-10-12 06:10:25 +000022 int result = 1; /* presumption of guilt */
Tim Peters2bf405a2000-10-12 19:42:00 +000023 assert(errno); /* non-zero errno is a precondition for calling */
Guido van Rossum8832b621991-12-16 15:44:24 +000024 if (errno == EDOM)
Barry Warsaw8b43b191996-12-09 22:32:36 +000025 PyErr_SetString(PyExc_ValueError, "math domain error");
Tim Petersa40c7932001-09-05 22:36:56 +000026
Tim Peters1d120612000-10-12 06:10:25 +000027 else if (errno == ERANGE) {
28 /* ANSI C generally requires libm functions to set ERANGE
29 * on overflow, but also generally *allows* them to set
30 * ERANGE on underflow too. There's no consistency about
Tim Petersa40c7932001-09-05 22:36:56 +000031 * the latter across platforms.
32 * Alas, C99 never requires that errno be set.
33 * Here we suppress the underflow errors (libm functions
34 * should return a zero on underflow, and +- HUGE_VAL on
35 * overflow, so testing the result for zero suffices to
36 * distinguish the cases).
Tim Peters1d120612000-10-12 06:10:25 +000037 */
38 if (x)
Tim Petersfe71f812001-08-07 22:10:00 +000039 PyErr_SetString(PyExc_OverflowError,
Tim Peters1d120612000-10-12 06:10:25 +000040 "math range error");
41 else
42 result = 0;
43 }
Guido van Rossum8832b621991-12-16 15:44:24 +000044 else
Barry Warsaw8b43b191996-12-09 22:32:36 +000045 /* Unexpected math error */
46 PyErr_SetFromErrno(PyExc_ValueError);
Tim Peters1d120612000-10-12 06:10:25 +000047 return result;
Guido van Rossum8832b621991-12-16 15:44:24 +000048}
49
Barry Warsaw8b43b191996-12-09 22:32:36 +000050static PyObject *
Fred Drake40c48682000-07-03 18:11:56 +000051math_1(PyObject *args, double (*func) (double), char *argsfmt)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000052{
53 double x;
Fred Drake40c48682000-07-03 18:11:56 +000054 if (! PyArg_ParseTuple(args, argsfmt, &x))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000055 return NULL;
56 errno = 0;
Guido van Rossum52fa3a61997-02-14 22:59:58 +000057 PyFPE_START_PROTECT("in math_1", return 0)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000058 x = (*func)(x);
Guido van Rossum45b83911997-03-14 04:32:50 +000059 PyFPE_END_PROTECT(x)
Tim Petersa40c7932001-09-05 22:36:56 +000060 Py_SET_ERANGE_IF_OVERFLOW(x);
Tim Peters1d120612000-10-12 06:10:25 +000061 if (errno && is_error(x))
62 return NULL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000063 else
Barry Warsaw8b43b191996-12-09 22:32:36 +000064 return PyFloat_FromDouble(x);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000065}
66
Barry Warsaw8b43b191996-12-09 22:32:36 +000067static PyObject *
Fred Drake40c48682000-07-03 18:11:56 +000068math_2(PyObject *args, double (*func) (double, double), char *argsfmt)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000069{
70 double x, y;
Fred Drake40c48682000-07-03 18:11:56 +000071 if (! PyArg_ParseTuple(args, argsfmt, &x, &y))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000072 return NULL;
73 errno = 0;
Guido van Rossum52fa3a61997-02-14 22:59:58 +000074 PyFPE_START_PROTECT("in math_2", return 0)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000075 x = (*func)(x, y);
Guido van Rossum45b83911997-03-14 04:32:50 +000076 PyFPE_END_PROTECT(x)
Tim Petersa40c7932001-09-05 22:36:56 +000077 Py_SET_ERANGE_IF_OVERFLOW(x);
Tim Peters1d120612000-10-12 06:10:25 +000078 if (errno && is_error(x))
79 return NULL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000080 else
Barry Warsaw8b43b191996-12-09 22:32:36 +000081 return PyFloat_FromDouble(x);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000082}
83
Fred Drake40c48682000-07-03 18:11:56 +000084#define FUNC1(funcname, func, docstring) \
85 static PyObject * math_##funcname(PyObject *self, PyObject *args) { \
86 return math_1(args, func, "d:" #funcname); \
Guido van Rossumc6e22901998-12-04 19:26:43 +000087 }\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000088 PyDoc_STRVAR(math_##funcname##_doc, docstring);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000089
Fred Drake40c48682000-07-03 18:11:56 +000090#define FUNC2(funcname, func, docstring) \
91 static PyObject * math_##funcname(PyObject *self, PyObject *args) { \
92 return math_2(args, func, "dd:" #funcname); \
Guido van Rossumc6e22901998-12-04 19:26:43 +000093 }\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000094 PyDoc_STRVAR(math_##funcname##_doc, docstring);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000095
Fred Drake40c48682000-07-03 18:11:56 +000096FUNC1(acos, acos,
Tim Petersfe71f812001-08-07 22:10:00 +000097 "acos(x)\n\nReturn the arc cosine (measured in radians) of x.")
Fred Drake40c48682000-07-03 18:11:56 +000098FUNC1(asin, asin,
Tim Petersfe71f812001-08-07 22:10:00 +000099 "asin(x)\n\nReturn the arc sine (measured in radians) of x.")
Fred Drake40c48682000-07-03 18:11:56 +0000100FUNC1(atan, atan,
Tim Petersfe71f812001-08-07 22:10:00 +0000101 "atan(x)\n\nReturn the arc tangent (measured in radians) of x.")
Martin v. Löwis387c5472001-09-06 08:16:17 +0000102FUNC2(atan2, atan2,
Tim Petersfe71f812001-08-07 22:10:00 +0000103 "atan2(y, x)\n\nReturn the arc tangent (measured in radians) of y/x.\n"
104 "Unlike atan(y/x), the signs of both x and y are considered.")
Fred Drake40c48682000-07-03 18:11:56 +0000105FUNC1(ceil, ceil,
Tim Petersfe71f812001-08-07 22:10:00 +0000106 "ceil(x)\n\nReturn the ceiling of x as a float.\n"
107 "This is the smallest integral value >= x.")
Fred Drake40c48682000-07-03 18:11:56 +0000108FUNC1(cos, cos,
Tim Petersfe71f812001-08-07 22:10:00 +0000109 "cos(x)\n\nReturn the cosine of x (measured in radians).")
Fred Drake40c48682000-07-03 18:11:56 +0000110FUNC1(cosh, cosh,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000111 "cosh(x)\n\nReturn the hyperbolic cosine of x.")
Fred Drake40c48682000-07-03 18:11:56 +0000112FUNC1(exp, exp,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000113 "exp(x)\n\nReturn e raised to the power of x.")
Fred Drake40c48682000-07-03 18:11:56 +0000114FUNC1(fabs, fabs,
Tim Petersfe71f812001-08-07 22:10:00 +0000115 "fabs(x)\n\nReturn the absolute value of the float x.")
Fred Drake40c48682000-07-03 18:11:56 +0000116FUNC1(floor, floor,
Tim Petersfe71f812001-08-07 22:10:00 +0000117 "floor(x)\n\nReturn the floor of x as a float.\n"
118 "This is the largest integral value <= x.")
Peter Schneider-Kamp07c19222001-06-10 16:45:08 +0000119FUNC2(fmod, fmod,
Tim Peters78fc0b52000-09-16 03:54:24 +0000120 "fmod(x,y)\n\nReturn fmod(x, y), according to platform C."
121 " x % y may differ.")
Fred Drake40c48682000-07-03 18:11:56 +0000122FUNC2(hypot, hypot,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000123 "hypot(x,y)\n\nReturn the Euclidean distance, sqrt(x*x + y*y).")
Fred Drake40c48682000-07-03 18:11:56 +0000124FUNC2(pow, pow,
Tim Petersfe71f812001-08-07 22:10:00 +0000125 "pow(x,y)\n\nReturn x**y (x to the power of y).")
Fred Drake40c48682000-07-03 18:11:56 +0000126FUNC1(sin, sin,
Tim Petersfe71f812001-08-07 22:10:00 +0000127 "sin(x)\n\nReturn the sine of x (measured in radians).")
Fred Drake40c48682000-07-03 18:11:56 +0000128FUNC1(sinh, sinh,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000129 "sinh(x)\n\nReturn the hyperbolic sine of x.")
Fred Drake40c48682000-07-03 18:11:56 +0000130FUNC1(sqrt, sqrt,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000131 "sqrt(x)\n\nReturn the square root of x.")
Fred Drake40c48682000-07-03 18:11:56 +0000132FUNC1(tan, tan,
Tim Petersfe71f812001-08-07 22:10:00 +0000133 "tan(x)\n\nReturn the tangent of x (measured in radians).")
Fred Drake40c48682000-07-03 18:11:56 +0000134FUNC1(tanh, tanh,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000135 "tanh(x)\n\nReturn the hyperbolic tangent of x.")
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000136
Barry Warsaw8b43b191996-12-09 22:32:36 +0000137static PyObject *
Fred Drake40c48682000-07-03 18:11:56 +0000138math_frexp(PyObject *self, PyObject *args)
Guido van Rossumd18ad581991-10-24 14:57:21 +0000139{
Guido van Rossumd18ad581991-10-24 14:57:21 +0000140 double x;
141 int i;
Fred Drake40c48682000-07-03 18:11:56 +0000142 if (! PyArg_ParseTuple(args, "d:frexp", &x))
Guido van Rossumd18ad581991-10-24 14:57:21 +0000143 return NULL;
144 errno = 0;
145 x = frexp(x, &i);
Tim Petersa40c7932001-09-05 22:36:56 +0000146 Py_SET_ERANGE_IF_OVERFLOW(x);
Tim Peters1d120612000-10-12 06:10:25 +0000147 if (errno && is_error(x))
148 return NULL;
149 else
150 return Py_BuildValue("(di)", x, i);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000151}
152
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000153PyDoc_STRVAR(math_frexp_doc,
Tim Peters63c94532001-09-04 23:17:42 +0000154"frexp(x)\n"
155"\n"
156"Return the mantissa and exponent of x, as pair (m, e).\n"
157"m is a float and e is an int, such that x = m * 2.**e.\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000158"If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0.");
Guido van Rossumc6e22901998-12-04 19:26:43 +0000159
Barry Warsaw8b43b191996-12-09 22:32:36 +0000160static PyObject *
Fred Drake40c48682000-07-03 18:11:56 +0000161math_ldexp(PyObject *self, PyObject *args)
Guido van Rossumd18ad581991-10-24 14:57:21 +0000162{
Guido van Rossumc5545052000-05-08 14:29:38 +0000163 double x;
164 int exp;
Fred Drake40c48682000-07-03 18:11:56 +0000165 if (! PyArg_ParseTuple(args, "di:ldexp", &x, &exp))
Guido van Rossumd18ad581991-10-24 14:57:21 +0000166 return NULL;
167 errno = 0;
Guido van Rossum52fa3a61997-02-14 22:59:58 +0000168 PyFPE_START_PROTECT("ldexp", return 0)
Guido van Rossumc5545052000-05-08 14:29:38 +0000169 x = ldexp(x, exp);
Guido van Rossum45b83911997-03-14 04:32:50 +0000170 PyFPE_END_PROTECT(x)
Tim Petersa40c7932001-09-05 22:36:56 +0000171 Py_SET_ERANGE_IF_OVERFLOW(x);
Tim Peters1d120612000-10-12 06:10:25 +0000172 if (errno && is_error(x))
173 return NULL;
Guido van Rossumd18ad581991-10-24 14:57:21 +0000174 else
Barry Warsaw8b43b191996-12-09 22:32:36 +0000175 return PyFloat_FromDouble(x);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000176}
177
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000178PyDoc_STRVAR(math_ldexp_doc,
179"ldexp(x, i) -> x * (2**i)");
Guido van Rossumc6e22901998-12-04 19:26:43 +0000180
Barry Warsaw8b43b191996-12-09 22:32:36 +0000181static PyObject *
Fred Drake40c48682000-07-03 18:11:56 +0000182math_modf(PyObject *self, PyObject *args)
Guido van Rossumd18ad581991-10-24 14:57:21 +0000183{
Guido van Rossumd18ad581991-10-24 14:57:21 +0000184 double x, y;
Fred Drake40c48682000-07-03 18:11:56 +0000185 if (! PyArg_ParseTuple(args, "d:modf", &x))
Guido van Rossumd18ad581991-10-24 14:57:21 +0000186 return NULL;
187 errno = 0;
188 x = modf(x, &y);
Tim Petersa40c7932001-09-05 22:36:56 +0000189 Py_SET_ERANGE_IF_OVERFLOW(x);
Tim Peters1d120612000-10-12 06:10:25 +0000190 if (errno && is_error(x))
191 return NULL;
192 else
193 return Py_BuildValue("(dd)", x, y);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000194}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000195
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000196PyDoc_STRVAR(math_modf_doc,
Tim Peters63c94532001-09-04 23:17:42 +0000197"modf(x)\n"
198"\n"
199"Return the fractional and integer parts of x. Both results carry the sign\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000200"of x. The integer part is returned as a real.");
Guido van Rossumc6e22901998-12-04 19:26:43 +0000201
Tim Peters78526162001-09-05 00:53:45 +0000202/* A decent logarithm is easy to compute even for huge longs, but libm can't
203 do that by itself -- loghelper can. func is log or log10, and name is
204 "log" or "log10". Note that overflow isn't possible: a long can contain
205 no more than INT_MAX * SHIFT bits, so has value certainly less than
206 2**(2**64 * 2**16) == 2**2**80, and log2 of that is 2**80, which is
207 small enough to fit in an IEEE single. log and log10 are even smaller.
208*/
209
210static PyObject*
Raymond Hettinger866964c2002-12-14 19:51:34 +0000211loghelper(PyObject* args, double (*func)(double), char *format, PyObject *arg)
Tim Peters78526162001-09-05 00:53:45 +0000212{
Tim Peters78526162001-09-05 00:53:45 +0000213 /* If it is long, do it ourselves. */
214 if (PyLong_Check(arg)) {
215 double x;
216 int e;
217 x = _PyLong_AsScaledDouble(arg, &e);
218 if (x <= 0.0) {
219 PyErr_SetString(PyExc_ValueError,
220 "math domain error");
221 return NULL;
222 }
223 /* Value is ~= x * 2**(e*SHIFT), so the log ~=
224 log(x) + log(2) * e * SHIFT.
225 CAUTION: e*SHIFT may overflow using int arithmetic,
226 so force use of double. */
Tim Peterse5ca6c72001-09-05 04:33:11 +0000227 x = func(x) + (e * (double)SHIFT) * func(2.0);
Tim Peters78526162001-09-05 00:53:45 +0000228 return PyFloat_FromDouble(x);
229 }
230
231 /* Else let libm handle it by itself. */
Tim Peters78526162001-09-05 00:53:45 +0000232 return math_1(args, func, format);
233}
234
235static PyObject *
236math_log(PyObject *self, PyObject *args)
237{
Raymond Hettinger866964c2002-12-14 19:51:34 +0000238 PyObject *arg;
239 PyObject *base = NULL;
240 PyObject *num, *den;
241 PyObject *ans;
242 PyObject *newargs;
243
Raymond Hettingerea3fdf42002-12-29 16:33:45 +0000244 if (!PyArg_UnpackTuple(args, "log", 1, 2, &arg, &base))
Raymond Hettinger866964c2002-12-14 19:51:34 +0000245 return NULL;
246 if (base == NULL)
247 return loghelper(args, log, "d:log", arg);
248
Raymond Hettinger8ae46892003-10-12 19:09:37 +0000249 newargs = PyTuple_Pack(1, arg);
Raymond Hettinger866964c2002-12-14 19:51:34 +0000250 if (newargs == NULL)
251 return NULL;
Raymond Hettinger866964c2002-12-14 19:51:34 +0000252 num = loghelper(newargs, log, "d:log", arg);
253 Py_DECREF(newargs);
254 if (num == NULL)
255 return NULL;
256
Raymond Hettinger8ae46892003-10-12 19:09:37 +0000257 newargs = PyTuple_Pack(1, base);
Raymond Hettinger866964c2002-12-14 19:51:34 +0000258 if (newargs == NULL) {
259 Py_DECREF(num);
260 return NULL;
261 }
Raymond Hettinger866964c2002-12-14 19:51:34 +0000262 den = loghelper(newargs, log, "d:log", base);
263 Py_DECREF(newargs);
264 if (den == NULL) {
265 Py_DECREF(num);
266 return NULL;
267 }
268
269 ans = PyNumber_Divide(num, den);
270 Py_DECREF(num);
271 Py_DECREF(den);
272 return ans;
Tim Peters78526162001-09-05 00:53:45 +0000273}
274
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000275PyDoc_STRVAR(math_log_doc,
Raymond Hettinger866964c2002-12-14 19:51:34 +0000276"log(x[, base]) -> the logarithm of x to the given base.\n\
277If the base not specified, returns the natural logarithm (base e) of x.");
Tim Peters78526162001-09-05 00:53:45 +0000278
279static PyObject *
280math_log10(PyObject *self, PyObject *args)
281{
Raymond Hettinger866964c2002-12-14 19:51:34 +0000282 PyObject *arg;
283
Raymond Hettingerea3fdf42002-12-29 16:33:45 +0000284 if (!PyArg_UnpackTuple(args, "log10", 1, 1, &arg))
Raymond Hettinger866964c2002-12-14 19:51:34 +0000285 return NULL;
286 return loghelper(args, log10, "d:log10", arg);
Tim Peters78526162001-09-05 00:53:45 +0000287}
288
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000289PyDoc_STRVAR(math_log10_doc,
290"log10(x) -> the base 10 logarithm of x.");
Tim Peters78526162001-09-05 00:53:45 +0000291
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000292static const double degToRad = 3.141592653589793238462643383 / 180.0;
293
294static PyObject *
295math_degrees(PyObject *self, PyObject *args)
296{
297 double x;
298 if (! PyArg_ParseTuple(args, "d:degrees", &x))
299 return NULL;
300 return PyFloat_FromDouble(x / degToRad);
301}
302
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000303PyDoc_STRVAR(math_degrees_doc,
304"degrees(x) -> converts angle x from radians to degrees");
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000305
306static PyObject *
307math_radians(PyObject *self, PyObject *args)
308{
309 double x;
310 if (! PyArg_ParseTuple(args, "d:radians", &x))
311 return NULL;
312 return PyFloat_FromDouble(x * degToRad);
313}
314
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000315PyDoc_STRVAR(math_radians_doc,
316"radians(x) -> converts angle x from degrees to radians");
Tim Peters78526162001-09-05 00:53:45 +0000317
Barry Warsaw8b43b191996-12-09 22:32:36 +0000318static PyMethodDef math_methods[] = {
Fred Drake40c48682000-07-03 18:11:56 +0000319 {"acos", math_acos, METH_VARARGS, math_acos_doc},
320 {"asin", math_asin, METH_VARARGS, math_asin_doc},
321 {"atan", math_atan, METH_VARARGS, math_atan_doc},
322 {"atan2", math_atan2, METH_VARARGS, math_atan2_doc},
323 {"ceil", math_ceil, METH_VARARGS, math_ceil_doc},
324 {"cos", math_cos, METH_VARARGS, math_cos_doc},
325 {"cosh", math_cosh, METH_VARARGS, math_cosh_doc},
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000326 {"degrees", math_degrees, METH_VARARGS, math_degrees_doc},
Fred Drake40c48682000-07-03 18:11:56 +0000327 {"exp", math_exp, METH_VARARGS, math_exp_doc},
328 {"fabs", math_fabs, METH_VARARGS, math_fabs_doc},
329 {"floor", math_floor, METH_VARARGS, math_floor_doc},
330 {"fmod", math_fmod, METH_VARARGS, math_fmod_doc},
331 {"frexp", math_frexp, METH_VARARGS, math_frexp_doc},
332 {"hypot", math_hypot, METH_VARARGS, math_hypot_doc},
333 {"ldexp", math_ldexp, METH_VARARGS, math_ldexp_doc},
334 {"log", math_log, METH_VARARGS, math_log_doc},
335 {"log10", math_log10, METH_VARARGS, math_log10_doc},
336 {"modf", math_modf, METH_VARARGS, math_modf_doc},
337 {"pow", math_pow, METH_VARARGS, math_pow_doc},
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000338 {"radians", math_radians, METH_VARARGS, math_radians_doc},
Fred Drake40c48682000-07-03 18:11:56 +0000339 {"sin", math_sin, METH_VARARGS, math_sin_doc},
340 {"sinh", math_sinh, METH_VARARGS, math_sinh_doc},
341 {"sqrt", math_sqrt, METH_VARARGS, math_sqrt_doc},
342 {"tan", math_tan, METH_VARARGS, math_tan_doc},
343 {"tanh", math_tanh, METH_VARARGS, math_tanh_doc},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000344 {NULL, NULL} /* sentinel */
345};
346
Guido van Rossumc6e22901998-12-04 19:26:43 +0000347
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000348PyDoc_STRVAR(module_doc,
Tim Peters63c94532001-09-04 23:17:42 +0000349"This module is always available. It provides access to the\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000350"mathematical functions defined by the C standard.");
Guido van Rossumc6e22901998-12-04 19:26:43 +0000351
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000352PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000353initmath(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000354{
Barry Warsaw8b43b191996-12-09 22:32:36 +0000355 PyObject *m, *d, *v;
Tim Petersfe71f812001-08-07 22:10:00 +0000356
Guido van Rossumc6e22901998-12-04 19:26:43 +0000357 m = Py_InitModule3("math", math_methods, module_doc);
Barry Warsaw8b43b191996-12-09 22:32:36 +0000358 d = PyModule_GetDict(m);
Barry Warsawfc93f751996-12-17 00:47:03 +0000359
360 if (!(v = PyFloat_FromDouble(atan(1.0) * 4.0)))
361 goto finally;
362 if (PyDict_SetItemString(d, "pi", v) < 0)
363 goto finally;
Barry Warsaw8b43b191996-12-09 22:32:36 +0000364 Py_DECREF(v);
Barry Warsawfc93f751996-12-17 00:47:03 +0000365
366 if (!(v = PyFloat_FromDouble(exp(1.0))))
367 goto finally;
Guido van Rossum4c4cbf31996-12-18 14:12:22 +0000368 if (PyDict_SetItemString(d, "e", v) < 0)
Barry Warsawfc93f751996-12-17 00:47:03 +0000369 goto finally;
Barry Warsaw8b43b191996-12-09 22:32:36 +0000370 Py_DECREF(v);
Barry Warsawfc93f751996-12-17 00:47:03 +0000371
372 finally:
Barry Warsaw9bfd2bf2000-09-01 09:01:32 +0000373 return;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000374}