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

Method __init__

dask/delayed.py:832–836  ·  view source on GitHub ↗
(self, obj, key, pure=None, nout=None)

Source from the content-addressed store, hash-verified

830 __slots__ = ("_obj", "_pure", "_nout")
831
832 def __init__(self, obj, key, pure=None, nout=None):
833 super().__init__(key, None, length=nout)
834 self._obj = obj
835 self._pure = pure
836 self._nout = nout
837
838 @property
839 def dask(self):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected