diff options
author | David Cournapeau <cournape@gmail.com> | 2009-07-20 04:41:53 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-07-20 04:41:53 +0000 |
commit | 2917b5710dc9957b7aa84df074b29a1a0a86476a (patch) | |
tree | 891d4e051d5020f5105775e6a0c3c30d96f0f5d0 /numpy/core/setup_common.py | |
parent | 22ff6146e57a1375652700892b3877d28e4fd151 (diff) | |
download | numpy-2917b5710dc9957b7aa84df074b29a1a0a86476a.tar.gz |
Add a few more math functions we forgot to test at configuration stage.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 76c6a5585..337436c8a 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -87,7 +87,7 @@ MANDATORY_FUNCS = ["sin", "cos", "tan", "sinh", "cosh", "tanh", "fabs", # Standard functions which may not be available and for which we have a # replacement implementation. Note that some of these are C99 functions. OPTIONAL_STDFUNCS = ["expm1", "log1p", "acosh", "asinh", "atanh", - "rint", "trunc", "exp2", "log2", "copysign"] + "rint", "trunc", "exp2", "log2", "copysign", "hypot", "atan2", "pow"] # Subset of OPTIONAL_STDFUNCS which may alreay have HAVE_* defined by Python.h OPTIONAL_STDFUNCS_MAYBE = ["expm1", "log1p", "acosh", "atanh", "asinh"] |