File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change
1
+ /* Any file that includes Python.h must include it before any other files */
2
+ /* https://docs.python.org/3/extending/extending.html#a-simple-example */
3
+ /* npy_common.h includes Python.h so it also counts in this list */
4
+ #include <Python.h>
5
+
1
6
#include "numpy/numpyconfig.h" // NPY_VISIBILITY_HIDDEN
2
7
#include "numpy/npy_math.h" // npy_get_floatstatus_barrier
3
8
#include "blas_utils.h"
Original file line number Diff line number Diff line change
1
+ /* Any file that includes Python.h must include it before any other files */
2
+ /* https://docs.python.org/3/extending/extending.html#a-simple-example */
3
+ /* npy_common.h includes Python.h so it also counts in this list */
4
+ #include <Python.h>
5
+
1
6
#include "numpy/numpyconfig.h" // for NPY_VISIBILITY_HIDDEN
2
7
3
8
#include <stdbool.h>
You can’t perform that action at this time.
0 commit comments