MCPcopy
hub / github.com/dask/dask / __deepcopy__

Method __deepcopy__

dask/array/core.py:2950–2953  ·  view source on GitHub ↗
(self, memo)

Source from the content-addressed store, hash-verified

2948 return Array(self.dask, self.name, self.chunks, meta=self)
2949
2950 def __deepcopy__(self, memo):
2951 c = self.copy()
2952 memo[id(self)] = c
2953 return c
2954
2955 def to_delayed(self, optimize_graph=True):
2956 """Convert into an array of :class:`dask.delayed.Delayed` objects, one per chunk.

Callers

nothing calls this directly

Calls 1

copyMethod · 0.95

Tested by

no test coverage detected