MCPcopy
hub / github.com/pandas-dev/pandas / reconstruct

Function reconstruct

pandas/core/arraylike.py:341–346  ·  view source on GitHub ↗
(result)

Source from the content-addressed store, hash-verified

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):

Callers 3

array_ufuncFunction · 0.85
__array_ufunc__Method · 0.85
__array_ufunc__Method · 0.85

Calls 1

_reconstructFunction · 0.85

Tested by

no test coverage detected