diff options
-rw-r--r-- | numpy/core/include/numpy/arrayobject.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/include/numpy/arrayobject.h b/numpy/core/include/numpy/arrayobject.h index c4e7ec741..81bdd8910 100644 --- a/numpy/core/include/numpy/arrayobject.h +++ b/numpy/core/include/numpy/arrayobject.h @@ -951,6 +951,10 @@ typedef struct { } PyArray_Chunk; /* Array flags */ +/* For backward's compatibility only */ +#define OWN_DIMENSIONS 0 +#define OWN_STRIDES 0 +#define SAVESPACE 0 /* Means c-style contiguous (last index varies the fastest). The data elements right after each other. */ |