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

Method __rtruediv__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

as_exprFunction · 0.85

Tested by

no test coverage detected