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

Method __truediv__

dask/dataframe/dask_expr/_expr.py:198–199  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

196 return Pow(power, self)
197
198 def __truediv__(self, other):
199 return Div(self, other)
200
201 def __rtruediv__(self, other):
202 return Div(other, self)

Callers

nothing calls this directly

Calls 1

DivClass · 0.85

Tested by

no test coverage detected