(array, *args)
| 42 | |
| 43 | Note that this function is mainly for internal use by this module.""" |
| 44 | def new_ufunc(array, *args): |
| 45 | return apply_ufunc(ufunc, array, args) |
| 46 | return new_ufunc |
| 47 | |
| 48 | def apply_dfunc(dfunc, array1, val2): |
nothing calls this directly
no test coverage detected