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

Method __deepcopy__

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

Source from the content-addressed store, hash-verified

2946 return Array(self.dask, self.name, self.chunks, meta=self)
2947
2948 def __deepcopy__(self, memo):
2949 c = self.copy()
2950 memo[id(self)] = c
2951 return c
2952
2953 def to_delayed(self, optimize_graph=True):
2954 """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