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

Method __eq__

dask/_task_spec.py:402–408  ·  view source on GitHub ↗
(self, value: object)

Source from the content-addressed store, hash-verified

400 raise NotImplementedError("Not implemented")
401
402 def __eq__(self, value: object) -> bool:
403 if type(value) is not type(self):
404 return False
405
406 from dask.tokenize import tokenize
407
408 return tokenize(self) == tokenize(value)
409
410 @property
411 def is_coro(self) -> bool:

Callers

nothing calls this directly

Calls 1

tokenizeFunction · 0.90

Tested by

no test coverage detected