summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-07-20 04:41:53 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-07-20 04:41:53 +0000
commit2917b5710dc9957b7aa84df074b29a1a0a86476a (patch)
tree891d4e051d5020f5105775e6a0c3c30d96f0f5d0 /numpy/core/setup_common.py
parent22ff6146e57a1375652700892b3877d28e4fd151 (diff)
downloadnumpy-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.py2
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"]