(func, nin, nout)
| 67 | |
| 68 | @derived_from(np) |
| 69 | def frompyfunc(func, nin, nout): |
| 70 | if nout > 1: |
| 71 | raise NotImplementedError("frompyfunc with more than one output") |
| 72 | return ufunc(da_frompyfunc(func, nin, nout)) |
| 73 | |
| 74 | |
| 75 | class ufunc: |
nothing calls this directly
no test coverage detected
searching dependent graphs…