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/f2py/src/fortranobject.h | |
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/f2py/src/fortranobject.h')
-rw-r--r-- | numpy/f2py/src/fortranobject.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/numpy/f2py/src/fortranobject.h b/numpy/f2py/src/fortranobject.h index 07e810ff9..76a357b5e 100644 --- a/numpy/f2py/src/fortranobject.h +++ b/numpy/f2py/src/fortranobject.h @@ -31,27 +31,6 @@ extern "C" { #define PyNumber_Int PyNumber_Long #endif -#if (PY_VERSION_HEX < 0x02060000) -#define Py_TYPE(o) (((PyObject*)(o))->ob_type) -#define Py_REFCNT(o) (((PyObject*)(o))->ob_refcnt) -#define Py_SIZE(o) (((PyVarObject*)(o))->ob_size) -#endif - - /* -#ifdef F2PY_REPORT_ATEXIT_DISABLE -#undef F2PY_REPORT_ATEXIT -#else - -#ifndef __FreeBSD__ -#ifndef __WIN32__ -#ifndef __APPLE__ -#define F2PY_REPORT_ATEXIT -#endif -#endif -#endif - -#endif - */ #ifdef F2PY_REPORT_ATEXIT #include <sys/timeb.h> |