MCPcopy Index your code
hub / github.com/dask/dask / __eq__

Method __eq__

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

Source from the content-addressed store, hash-verified

409 raise NotImplementedError("Not implemented")
410
411 def __eq__(self, value: object) -> bool:
412 if type(value) is not type(self):
413 return False
414
415 from dask.tokenize import tokenize
416
417 return tokenize(self) == tokenize(value)
418
419 @property
420 def is_coro(self) -> bool:

Callers

nothing calls this directly

Calls 1

tokenizeFunction · 0.90

Tested by

no test coverage detected