/opt/imh-python/lib/python3.9/site-packages/numpy/core/include/numpy
NameSizeModeActions
random/-0755rm
arrayobject.h2820644editdlrm
arrayscalars.h39440644editdlrm
experimental_dtype_api.h155320644editdlrm
halffloat.h19590644editdlrm
ndarrayobject.h101830644editdlrm
ndarraytypes.h680090644editdlrm
noprefix.h68300644editdlrm
npy_1_7_deprecated_api.h43270644editdlrm
npy_3kcompat.h158830644editdlrm
npy_common.h376880644editdlrm
npy_cpu.h46290644editdlrm
npy_endian.h27860644editdlrm
npy_interrupt.h19480644editdlrm
npy_math.h189450644editdlrm
npy_no_deprecated_api.h6780644editdlrm
npy_os.h11200644editdlrm
numpyconfig.h53080644editdlrm
old_defines.h64050644editdlrm
ufuncobject.h120700644editdlrm
utils.h11850644editdlrm
_dtype_api.h166970644editdlrm
_neighborhood_iterator_imp.h18570644editdlrm
_numpyconfig.h8550644editdlrm
__multiarray_api.c121160644editdlrm
__multiarray_api.h615190644editdlrm
__ufunc_api.c17140644editdlrm
__ufunc_api.h124560644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/numpy/core/include/numpy/arrayscalars.h (3944B)
#ifndef NUMPY_CORE_INCLUDE_NUMPY_ARRAYSCALARS_H_ #define NUMPY_CORE_INCLUDE_NUMPY_ARRAYSCALARS_H_ #ifndef _MULTIARRAYMODULE typedef struct { PyObject_HEAD npy_bool obval; } PyBoolScalarObject; #endif typedef struct { PyObject_HEAD signed char obval; } PyByteScalarObject; typedef struct { PyObject_HEAD short obval; } PyShortScalarObject; typedef struct { PyObject_HEAD int obval; } PyIntScalarObject; typedef struct { PyObject_HEAD long obval; } PyLongScalarObject; typedef struct { PyObject_HEAD npy_longlong obval; } PyLongLongScalarObject; typedef struct { PyObject_HEAD unsigned char obval; } PyUByteScalarObject; typedef struct { PyObject_HEAD unsigned short obval; } PyUShortScalarObject; typedef struct { PyObject_HEAD unsigned int obval; } PyUIntScalarObject; typedef struct { PyObject_HEAD unsigned long obval; } PyULongScalarObject; typedef struct { PyObject_HEAD npy_ulonglong obval; } PyULongLongScalarObject; typedef struct { PyObject_HEAD npy_half obval; } PyHalfScalarObject; typedef struct { PyObject_HEAD float obval; } PyFloatScalarObject; typedef struct { PyObject_HEAD double obval; } PyDoubleScalarObject; typedef struct { PyObject_HEAD npy_longdouble obval; } PyLongDoubleScalarObject; typedef struct { PyObject_HEAD npy_cfloat obval; } PyCFloatScalarObject; typedef struct { PyObject_HEAD npy_cdouble obval; } PyCDoubleScalarObject; typedef struct { PyObject_HEAD npy_clongdouble obval; } PyCLongDoubleScalarObject; typedef struct { PyObject_HEAD PyObject * obval; } PyObjectScalarObject; typedef struct { PyObject_HEAD npy_datetime obval; PyArray_DatetimeMetaData obmeta; } PyDatetimeScalarObject; typedef struct { PyObject_HEAD npy_timedelta obval; PyArray_DatetimeMetaData obmeta; } PyTimedeltaScalarObject; typedef struct { PyObject_HEAD char obval; } PyScalarObject; #define PyStringScalarObject PyBytesObject typedef struct { /* note that the PyObject_HEAD macro lives right here */ PyUnicodeObject base; Py_UCS4 *obval; #if NPY_FEATURE_VERSION >= NPY_1_20_API_VERSION char *buffer_fmt; #endif } PyUnicodeScalarObject; typedef struct { PyObject_VAR_HEAD char *obval; PyArray_Descr *descr; int flags; PyObject *base; #if NPY_FEATURE_VERSION >= NPY_1_20_API_VERSION void *_buffer_info; /* private buffer info, tagged to allow warning */ #endif } PyVoidScalarObject; /* Macros PyScalarObject PyArrType_Type are defined in ndarrayobject.h */ #define PyArrayScalar_False ((PyObject *)(&(_PyArrayScalar_BoolValues[0]))) #define PyArrayScalar_True ((PyObject *)(&(_PyArrayScalar_BoolValues[1]))) #define PyArrayScalar_FromLong(i) \ ((PyObject *)(&(_PyArrayScalar_BoolValues[((i)!=0)]))) #define PyArrayScalar_RETURN_BOOL_FROM_LONG(i) \ return Py_INCREF(PyArrayScalar_FromLong(i)), \ PyArrayScalar_FromLong(i) #define PyArrayScalar_RETURN_FALSE \ return Py_INCREF(PyArrayScalar_False), \ PyArrayScalar_False #define PyArrayScalar_RETURN_TRUE \ return Py_INCREF(PyArrayScalar_True), \ PyArrayScalar_True #define PyArrayScalar_New(cls) \ Py##cls##ArrType_Type.tp_alloc(&Py##cls##ArrType_Type, 0) #define PyArrayScalar_VAL(obj, cls) \ ((Py##cls##ScalarObject *)obj)->obval #define PyArrayScalar_ASSIGN(obj, cls, val) \ PyArrayScalar_VAL(obj, cls) = val #endif /* NUMPY_CORE_INCLUDE_NUMPY_ARRAYSCALARS_H_ */