(result)
| 339 | reconstruct_kwargs = {} |
| 340 | |
| 341 | def reconstruct(result): |
| 342 | if ufunc.nout > 1: |
| 343 | # np.modf, np.frexp, np.divmod |
| 344 | return tuple(_reconstruct(x) for x in result) |
| 345 | |
| 346 | return _reconstruct(result) |
| 347 | |
| 348 | def _reconstruct(result): |
| 349 | if lib.is_scalar(result): |
no test coverage detected