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

Method __deepcopy__

xarray/core/indexes.py:471–472  ·  view source on GitHub ↗
(self, memo: dict[int, Any] | None = None)

Source from the content-addressed store, hash-verified

469 return self.copy(deep=False)
470
471 def __deepcopy__(self, memo: dict[int, Any] | None = None) -> Index:
472 return self._copy(deep=True, memo=memo)
473
474 def _copy(self, deep: bool = True, memo: dict[int, Any] | None = None) -> Self:
475 cls = self.__class__

Callers

nothing calls this directly

Calls 1

_copyMethod · 0.95

Tested by

no test coverage detected