UFUNC_API * * On return, if errobj is populated with a non-NULL value, the caller * owns a new reference to errobj. */
| 539 | * owns a new reference to errobj. |
| 540 | */ |
| 541 | NPY_NO_EXPORT int |
| 542 | PyUFunc_GetPyValues(char *name, int *bufsize, int *errmask, PyObject **errobj) |
| 543 | { |
| 544 | PyObject *ref = get_global_ext_obj(); |
| 545 | |
| 546 | return _extract_pyvals(ref, name, bufsize, errmask, errobj); |
| 547 | } |
| 548 | |
| 549 | /* Return the position of next non-white-space char in the string */ |
| 550 | static int |
no test coverage detected