diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-05-14 20:31:07 +0200 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-05-14 20:53:56 +0200 |
commit | ceffd0443e548b728708e50a2e1ffc5591c0161b (patch) | |
tree | ed7b931ed61f7c438ea46965b7cf18325aee4f17 /numpy/core/setup_common.py | |
parent | afe32d77b3540f11ff564f851f1db5afd26857b3 (diff) | |
download | numpy-ceffd0443e548b728708e50a2e1ffc5591c0161b.tar.gz |
BUG: Fix string to int64 conversion on 32-bit platforms
closes gh-4575
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 85e92d923..e66b1653a 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -99,7 +99,8 @@ MANDATORY_FUNCS = ["sin", "cos", "tan", "sinh", "cosh", "tanh", "fabs", # replacement implementation. Note that some of these are C99 functions. OPTIONAL_STDFUNCS = ["expm1", "log1p", "acosh", "asinh", "atanh", "rint", "trunc", "exp2", "log2", "hypot", "atan2", "pow", - "copysign", "nextafter", "ftello", "fseeko"] + "copysign", "nextafter", "ftello", "fseeko", + "strtoll", "strtoull"] OPTIONAL_HEADERS = [ |