diff options
author | David Cournapeau <cournape@gmail.com> | 2009-04-30 08:38:05 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-04-30 08:38:05 +0000 |
commit | f3e2b283aaec79f6ae8516c03fe91c11bcd0ecb0 (patch) | |
tree | c6166136c8e284bfe3727747302aa7e99880854d /numpy/core/src/arrayobject.h | |
parent | 2c1ac5440c3ab4d673498124c0e7608c4b3c5c1c (diff) | |
download | numpy-f3e2b283aaec79f6ae8516c03fe91c11bcd0ecb0.tar.gz |
Put array construction functions into separate file.
Diffstat (limited to 'numpy/core/src/arrayobject.h')
-rw-r--r-- | numpy/core/src/arrayobject.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/numpy/core/src/arrayobject.h b/numpy/core/src/arrayobject.h index f5cb1490b..d3d4b8794 100644 --- a/numpy/core/src/arrayobject.h +++ b/numpy/core/src/arrayobject.h @@ -124,6 +124,15 @@ _IsAligned(PyArrayObject *ap); NPY_NO_EXPORT Bool _IsWriteable(PyArrayObject *ap); +NPY_NO_EXPORT PyArray_Descr * +_array_find_type(PyObject *op, PyArray_Descr *minitype, int max); + +NPY_NO_EXPORT PyArray_Descr * +_array_find_python_scalar_type(PyObject *op); + +NPY_NO_EXPORT PyArray_Descr * +_array_typedescr_fromstr(char *str); + /* FIXME: this is defined in multiarraymodule.c ... */ NPY_NO_EXPORT PyObject * __New_PyArray_Std(PyArrayObject *self, int axis, int rtype, PyArrayObject *out, |