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

Method __rtruediv__

numpy/f2py/symbolic.py:545–549  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

543 return NotImplemented
544
545 def __rtruediv__(self, other):
546 other = as_expr(other)
547 if isinstance(other, Expr):
548 return other / self
549 return NotImplemented
550
551 def __floordiv__(self, other):
552 other = as_expr(other)

Callers

nothing calls this directly

Calls 1

as_exprFunction · 0.85

Tested by

no test coverage detected