MCPcopy Index your code
hub / github.com/pydata/xarray / __copy__

Method __copy__

xarray/core/dataarray.py:1362–1363  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1360 return self._replace(variable, coords, indexes=indexes)
1361
1362 def __copy__(self) -> Self:
1363 return self._copy(deep=False)
1364
1365 def __deepcopy__(self, memo: dict[int, Any] | None = None) -> Self:
1366 return self._copy(deep=True, memo=memo)

Callers

nothing calls this directly

Calls 1

_copyMethod · 0.95

Tested by

no test coverage detected