numpy 2.0.0
src/multiarray/arrayobject.h
Go to the documentation of this file.
00001 #ifndef _NPY_INTERNAL_ARRAYOBJECT_H_
00002 #define _NPY_INTERNAL_ARRAYOBJECT_H_
00003 
00004 #ifndef _MULTIARRAYMODULE
00005 #error You should not include this
00006 #endif
00007 
00008 NPY_NO_EXPORT PyObject *
00009 _strings_richcompare(PyArrayObject *self, PyArrayObject *other, int cmp_op,
00010                      int rstrip);
00011 
00012 NPY_NO_EXPORT PyObject *
00013 array_richcompare(PyArrayObject *self, PyObject *other, int cmp_op);
00014 
00015 #endif