numpy 2.0.0
|
00001 #ifndef _NPY_PRIVATE__DATETIME_BUSDAY_H_ 00002 #define _NPY_PRIVATE__DATETIME_BUSDAY_H_ 00003 00004 /* 00005 * This is the 'busday_offset' function exposed for calling 00006 * from Python. 00007 */ 00008 NPY_NO_EXPORT PyObject * 00009 array_busday_offset(PyObject *NPY_UNUSED(self), 00010 PyObject *args, PyObject *kwds); 00011 00012 /* 00013 * This is the 'busday_count' function exposed for calling 00014 * from Python. 00015 */ 00016 NPY_NO_EXPORT PyObject * 00017 array_busday_count(PyObject *NPY_UNUSED(self), 00018 PyObject *args, PyObject *kwds); 00019 00020 /* 00021 * This is the 'is_busday' function exposed for calling 00022 * from Python. 00023 */ 00024 NPY_NO_EXPORT PyObject * 00025 array_is_busday(PyObject *NPY_UNUSED(self), 00026 PyObject *args, PyObject *kwds); 00027 00028 #endif