MCPcopy Create free account
hub / github.com/numpy/numpy / __rdiv__

Method __rdiv__

numpy/polynomial/_polybase.py:616–618  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

614 return self.__class__(coef, self.domain, self.window, self.symbol)
615
616 def __rdiv__(self, other):
617 # set to __floordiv__ /.
618 return self.__rfloordiv__(other)
619
620 def __rtruediv__(self, other):
621 # An instance of ABCPolyBase is not considered a

Callers

nothing calls this directly

Calls 1

__rfloordiv__Method · 0.95

Tested by

no test coverage detected