[Numpy-svn] r5787 - branches/clean_math_config/numpy/core

numpy-svn at scipy.org numpy-svn at scipy.org
Fri Sep 5 03:00:16 EDT 2008


Author: cdavid
Date: 2008-09-05 02:00:12 -0500 (Fri, 05 Sep 2008)
New Revision: 5787

Modified:
   branches/clean_math_config/numpy/core/setup.py
Log:
ldexp is a mandatory function.

Modified: branches/clean_math_config/numpy/core/setup.py
===================================================================
--- branches/clean_math_config/numpy/core/setup.py	2008-09-05 06:59:44 UTC (rev 5786)
+++ branches/clean_math_config/numpy/core/setup.py	2008-09-05 07:00:12 UTC (rev 5787)
@@ -66,7 +66,7 @@
     # Mandatory functions: if not found, fail the build
     mandatory_funcs = ["sin", "cos", "tan", "sinh", "cosh", "tanh", "fabs",
                        "floor", "ceil", "sqrt", "log10", "log", "exp", "asin",
-                       "acos", "atan", "fmod", 'modf', 'frexp']
+                       "acos", "atan", "fmod", 'modf', 'frexp', 'ldexp']
 
     if not check_funcs_once(mandatory_funcs):
         raise SystemError("One of the required function to build numpy is not"




More information about the Numpy-svn mailing list