diff options
author | David Cournapeau <cournape@gmail.com> | 2009-04-30 08:37:38 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-04-30 08:37:38 +0000 |
commit | 2c1ac5440c3ab4d673498124c0e7608c4b3c5c1c (patch) | |
tree | 1ee20acd441a61b828e0334314a514f0925b3195 /numpy/core/src/arrayobject.h | |
parent | 98389353b020db90e90e00da4bdf19e18f942cba (diff) | |
download | numpy-2c1ac5440c3ab4d673498124c0e7608c4b3c5c1c.tar.gz |
Put array methods in separate file.
Diffstat (limited to 'numpy/core/src/arrayobject.h')
-rw-r--r-- | numpy/core/src/arrayobject.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/numpy/core/src/arrayobject.h b/numpy/core/src/arrayobject.h index cd66e9108..f5cb1490b 100644 --- a/numpy/core/src/arrayobject.h +++ b/numpy/core/src/arrayobject.h @@ -114,6 +114,16 @@ array_richcompare(PyArrayObject *self, PyObject *other, int cmp_op); NPY_NO_EXPORT PyObject * array_subscript_simple(PyArrayObject *self, PyObject *op); +NPY_NO_EXPORT size_t +_array_fill_strides(intp *strides, intp *dims, int nd, size_t itemsize, + int inflag, int *objflags); + +NPY_NO_EXPORT int +_IsAligned(PyArrayObject *ap); + +NPY_NO_EXPORT Bool +_IsWriteable(PyArrayObject *ap); + /* FIXME: this is defined in multiarraymodule.c ... */ NPY_NO_EXPORT PyObject * __New_PyArray_Std(PyArrayObject *self, int axis, int rtype, PyArrayObject *out, |