(self, other)
| 153 | return self.__class__(self.numerator * other.numerator, |
| 154 | self.denominator * other.denominator) |
| 155 | def __rmul__(self, other): |
| 156 | return self.__class__(other.numerator * self.numerator, |
| 157 | other.denominator * self.denominator) |
| 158 | def __truediv__(self, other): |
| 159 | if isinstance(other, F): |
| 160 | return NotImplemented |
no test coverage detected