diff options
author | njsmith <njs@pobox.com> | 2013-07-11 15:54:49 -0700 |
---|---|---|
committer | njsmith <njs@pobox.com> | 2013-07-11 15:54:49 -0700 |
commit | e1c4806b649933383fb610205fb612c438360472 (patch) | |
tree | 91dc7b921171c1b5a0b0b4010669576bc7fc5dcf /numpy/lib/src | |
parent | 12c5fc01e37d2235713c59ac0b1346294a8e8688 (diff) | |
parent | 28eadc0e31ca7aea5c679023d1e703856f45c879 (diff) | |
download | numpy-e1c4806b649933383fb610205fb612c438360472.tar.gz |
Merge pull request #3516 from charris/remove-outdated-version-checks
MAINT: Remove outdated version checks.
Diffstat (limited to 'numpy/lib/src')
-rw-r--r-- | numpy/lib/src/_compiled_base.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/numpy/lib/src/_compiled_base.c b/numpy/lib/src/_compiled_base.c index 41caca962..66a765868 100644 --- a/numpy/lib/src/_compiled_base.c +++ b/numpy/lib/src/_compiled_base.c @@ -7,9 +7,6 @@ #include "numpy/ufuncobject.h" #include "string.h" -#if (PY_VERSION_HEX < 0x02060000) -#define Py_TYPE(o) (((PyObject*)(o))->ob_type) -#endif static npy_intp incr_slot_(double x, double *bins, npy_intp lbins) |