diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-09-01 18:22:05 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2021-09-03 10:35:29 -0600 |
commit | a3e2b7c46d4c4025f4945e3e3ea207a00a63c499 (patch) | |
tree | 9d4048f5be195b965b211e603a674da13c7225c6 /numpy/f2py/src/fortranobject.h | |
parent | c6ac4dab50dad3ee0936fb4b765cf4f441874d33 (diff) | |
download | numpy-a3e2b7c46d4c4025f4945e3e3ea207a00a63c499.tar.gz |
MAIN: Minor include rationalization.
- Replace "Python.h" by <Python.h>
- Replace "structmember.h" by <structmember.h>
- Replace <npy_config> by "npy_config"
- Define PY_SSIZE_T_CLEAN before all Python.h includes in .c files.
Diffstat (limited to 'numpy/f2py/src/fortranobject.h')
-rw-r--r-- | numpy/f2py/src/fortranobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/src/fortranobject.h b/numpy/f2py/src/fortranobject.h index d4cc10243..278c236a7 100644 --- a/numpy/f2py/src/fortranobject.h +++ b/numpy/f2py/src/fortranobject.h @@ -4,7 +4,7 @@ extern "C" { #endif -#include "Python.h" +#include <Python.h> #ifdef FORTRANOBJECT_C #define NO_IMPORT_ARRAY |