MCPcopy
hub / github.com/dask/dask / __str__

Method __str__

dask/_expr.py:84–86  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

82 return [f"{param}={op!r}" for param, op in zip(self._parameters, self.operands)]
83
84 def __str__(self):
85 s = ", ".join(self._operands_for_repr())
86 return f"{type(self).__name__}({s})"
87
88 def __repr__(self):
89 return str(self)

Callers

nothing calls this directly

Calls 2

_operands_for_reprMethod · 0.95
joinMethod · 0.45

Tested by

no test coverage detected