(self, other)
| 607 | return self.__class__(coef, self.domain, self.window, self.symbol) |
| 608 | |
| 609 | def __rmul__(self, other): |
| 610 | try: |
| 611 | coef = self._mul(other, self.coef) |
| 612 | except Exception: |
| 613 | return NotImplemented |
| 614 | return self.__class__(coef, self.domain, self.window, self.symbol) |
| 615 | |
| 616 | def __rdiv__(self, other): |
| 617 | # set to __floordiv__ /. |