diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2012-11-11 15:29:56 -0800 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2012-11-11 15:29:56 -0800 |
commit | c479200918f034f587d24ba59c0550d2241ddf9a (patch) | |
tree | 62fc307987aeec0225e48d9a031adb26caa46722 | |
parent | 75b8119f8145ab08a436ecfd7de868c6c6ba8f6d (diff) | |
parent | bee8c4d2474bbd21acfbd4d7e8c71cf12b3d6227 (diff) | |
download | numpy-c479200918f034f587d24ba59c0550d2241ddf9a.tar.gz |
Merge pull request #2723 from pv/py24-fix
BUG: fix Python 2.4 build with NPY_SEPARATE_COMPILATION
-rw-r--r-- | numpy/core/src/umath/reduction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/reduction.c b/numpy/core/src/umath/reduction.c index 444682d57..e6ed04e99 100644 --- a/numpy/core/src/umath/reduction.c +++ b/numpy/core/src/umath/reduction.c @@ -21,7 +21,7 @@ #include <numpy/arrayobject.h> #include "npy_config.h" -#include "numpy/npy_3kcompat.h" +#include "npy_pycompat.h" #include "lowlevel_strided_loops.h" #include "reduction.h" |