(self, other)
| 108 | def __rmul__(self, other): |
| 109 | return self.__class__(f'{other} * {self}') |
| 110 | def __truediv__(self, other): |
| 111 | if isinstance(other, F): |
| 112 | return NotImplemented |
| 113 | return self.__class__(f'{self} / {other}') |
| 114 | def __rtruediv__(self, other): |
| 115 | return self.__class__(f'{other} / {self}') |
| 116 | def __mod__(self, other): |