(self, other)
| 588 | return quo, rem |
| 589 | |
| 590 | def __pow__(self, other): |
| 591 | coef = self._pow(self.coef, other, maxpower=self.maxpower) |
| 592 | res = self.__class__(coef, self.domain, self.window, self.symbol) |
| 593 | return res |
| 594 | |
| 595 | def __radd__(self, other): |
| 596 | try: |