(self, other)
| 19 | """Dummy Integral class to test conversion of the Rational to float.""" |
| 20 | |
| 21 | def __mul__(self, other): |
| 22 | return DummyIntegral(super().__mul__(other)) |
| 23 | __rmul__ = __mul__ |
| 24 | |
| 25 | def __truediv__(self, other): |
nothing calls this directly
no test coverage detected