diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-09-03 12:27:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-03 12:27:37 -0600 |
commit | 410a89ef04a2d3c50dd2dba2ad403c872c3745ac (patch) | |
tree | e348d96fffa65e5f5a243ec83b2e4e6ed8d16145 /numpy/f2py/cfuncs.py | |
parent | 644c55e04fef551690f2f6ca70099d1297ab5c23 (diff) | |
parent | a3e2b7c46d4c4025f4945e3e3ea207a00a63c499 (diff) | |
download | numpy-410a89ef04a2d3c50dd2dba2ad403c872c3745ac.tar.gz |
Merge pull request #19810 from charris/update-some-includes
MAINT: Minor include rationalizations.
Diffstat (limited to 'numpy/f2py/cfuncs.py')
-rw-r--r-- | numpy/f2py/cfuncs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/cfuncs.py b/numpy/f2py/cfuncs.py index 714f9a932..8f42b4029 100644 --- a/numpy/f2py/cfuncs.py +++ b/numpy/f2py/cfuncs.py @@ -51,7 +51,7 @@ includes0['math.h'] = '#include <math.h>' includes0['string.h'] = '#include <string.h>' includes0['setjmp.h'] = '#include <setjmp.h>' -includes['Python.h'] = '#include "Python.h"' +includes['Python.h'] = '#include <Python.h>' needs['arrayobject.h'] = ['Python.h'] includes['arrayobject.h'] = '''#define PY_ARRAY_UNIQUE_SYMBOL PyArray_API #include "arrayobject.h"''' |