blob: 134b56ed3fef114d0975f0e1731f05118a682b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef NUMPY_CORE_SRC_MULTIARRAY_STRFUNCS_H_
#define NUMPY_CORE_SRC_MULTIARRAY_STRFUNCS_H_
NPY_NO_EXPORT void
PyArray_SetStringFunction(PyObject *op, int repr);
NPY_NO_EXPORT PyObject *
array_repr(PyArrayObject *self);
NPY_NO_EXPORT PyObject *
array_str(PyArrayObject *self);
NPY_NO_EXPORT PyObject *
array_format(PyArrayObject *self, PyObject *args);
#endif /* NUMPY_CORE_SRC_MULTIARRAY_STRFUNCS_H_ */
|