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

Method __copy__

xarray/core/dataset.py:1176–1177  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1174 return self._replace(variables, indexes=indexes, attrs=attrs, encoding=encoding)
1175
1176 def __copy__(self) -> Self:
1177 return self._copy(deep=False)
1178
1179 def __deepcopy__(self, memo: dict[int, Any] | None = None) -> Self:
1180 return self._copy(deep=True, memo=memo)

Callers

nothing calls this directly

Calls 1

_copyMethod · 0.95

Tested by

no test coverage detected