forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharrayobject.h
More file actions
29 lines (23 loc) · 994 Bytes
/
arrayobject.h
File metadata and controls
29 lines (23 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _MULTIARRAYMODULE
#error You should not include this
#endif
#ifndef NUMPY_CORE_SRC_MULTIARRAY_ARRAYOBJECT_H_
#define NUMPY_CORE_SRC_MULTIARRAY_ARRAYOBJECT_H_
NPY_NO_EXPORT PyObject *
_strings_richcompare(PyArrayObject *self, PyArrayObject *other, int cmp_op,
int rstrip);
NPY_NO_EXPORT PyObject *
array_richcompare(PyArrayObject *self, PyObject *other, int cmp_op);
NPY_NO_EXPORT int
array_might_be_written(PyArrayObject *obj);
/*
* This flag is used to mark arrays which we would like to, in the future,
* turn into views. It causes a warning to be issued on the first attempt to
* write to the array (but the write is allowed to succeed).
*
* This flag is for internal use only, and may be removed in a future release,
* which is why the #define is not exposed to user code. Currently it is set
* on arrays returned by ndarray.diagonal.
*/
static const int NPY_ARRAY_WARN_ON_WRITE = (1 << 31);
#endif /* NUMPY_CORE_SRC_MULTIARRAY_ARRAYOBJECT_H_ */