diff options
Diffstat (limited to 'scipy/base/src/arrayobject.c')
-rw-r--r-- | scipy/base/src/arrayobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/src/arrayobject.c b/scipy/base/src/arrayobject.c index 9490961fc..2ee6197a1 100644 --- a/scipy/base/src/arrayobject.c +++ b/scipy/base/src/arrayobject.c @@ -771,7 +771,7 @@ PyArray_FromDims(int nd, int *d, int type) for (i=0; i<nd; i++) newd[i] = (intp) d[i]; return PyArray_New(&PyArray_Type, nd, newd, type, - NULL, NULL, 0, 0, NULL); + NULL, NULL, 0, CARRAY_FLAGS, NULL); } /* end */ |