MCPcopy Create free account
hub / github.com/dask/dask / __deepcopy__

Method __deepcopy__

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

Source from the content-addressed store, hash-verified

2954 return Array(self.dask, self.name, self.chunks, meta=self)
2955
2956 def __deepcopy__(self, memo):
2957 c = self.copy()
2958 memo[id(self)] = c
2959 return c
2960
2961 def to_delayed(self, optimize_graph=True):
2962 """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