UFUNC_API*/
| 123 | |
| 124 | /*UFUNC_API*/ |
| 125 | NPY_NO_EXPORT int |
| 126 | PyUFunc_getfperr(void) |
| 127 | { |
| 128 | /* |
| 129 | * non-clearing get was only added in 1.9 so this function always cleared |
| 130 | * keep it so just in case third party code relied on the clearing |
| 131 | */ |
| 132 | char param = 0; |
| 133 | return npy_clear_floatstatus_barrier(¶m); |
| 134 | } |
| 135 | |
| 136 | #define HANDLEIT(NAME, str) {if (retstatus & NPY_FPE_##NAME) { \ |
| 137 | handle = errmask & UFUNC_MASK_##NAME; \ |
nothing calls this directly
no test coverage detected