UFUNC_API*/
| 5157 | |
| 5158 | /*UFUNC_API*/ |
| 5159 | NPY_NO_EXPORT PyObject * |
| 5160 | PyUFunc_FromFuncAndData(PyUFuncGenericFunction *func, void **data, |
| 5161 | char *types, int ntypes, |
| 5162 | int nin, int nout, int identity, |
| 5163 | const char *name, const char *doc, int unused) |
| 5164 | { |
| 5165 | return PyUFunc_FromFuncAndDataAndSignature(func, data, types, ntypes, |
| 5166 | nin, nout, identity, name, doc, unused, NULL); |
| 5167 | } |
| 5168 | |
| 5169 | /*UFUNC_API*/ |
| 5170 | NPY_NO_EXPORT PyObject * |