MCPcopy Create free account
hub / github.com/numpy/numpy / PyUFunc_FromFuncAndDataAndSignature

Function PyUFunc_FromFuncAndDataAndSignature

numpy/core/src/umath/ufunc_object.c:5170–5180  ·  view source on GitHub ↗

UFUNC_API*/

Source from the content-addressed store, hash-verified

5168
5169/*UFUNC_API*/
5170NPY_NO_EXPORT PyObject *
5171PyUFunc_FromFuncAndDataAndSignature(PyUFuncGenericFunction *func, void **data,
5172 char *types, int ntypes,
5173 int nin, int nout, int identity,
5174 const char *name, const char *doc,
5175 int unused, const char *signature)
5176{
5177 return PyUFunc_FromFuncAndDataAndSignatureAndIdentity(
5178 func, data, types, ntypes, nin, nout, identity, name, doc,
5179 unused, signature, NULL);
5180}
5181
5182/*UFUNC_API*/
5183NPY_NO_EXPORT PyObject *

Callers 3

PyUFunc_FromFuncAndDataFunction · 0.85
PyInit__rational_testsFunction · 0.85
addUfuncsFunction · 0.85

Tested by 1

PyInit__rational_testsFunction · 0.68