summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/src/arrayobject.h')
-rw-r--r--numpy/core/src/arrayobject.h9
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,