def __rtruediv__(self, other): return ops.truediv(other, self)
def __itruediv__(self, other): if in_python_scope(): return NotImplemented self._assign(ops.truediv(self, other)) return self
def __truediv__(self, other): return ops.truediv(self, other)
def __itruediv__(self, other): self.assign(ops.truediv(self, other)) return self