UFUNC_API*/
| 5168 | |
| 5169 | /*UFUNC_API*/ |
| 5170 | NPY_NO_EXPORT PyObject * |
| 5171 | PyUFunc_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*/ |
| 5183 | NPY_NO_EXPORT PyObject * |