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

Method __truediv__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

DivClass · 0.85

Tested by

no test coverage detected