(self, other)
| 614 | return self.__class__(coef, self.domain, self.window, self.symbol) |
| 615 | |
| 616 | def __rdiv__(self, other): |
| 617 | # set to __floordiv__ /. |
| 618 | return self.__rfloordiv__(other) |
| 619 | |
| 620 | def __rtruediv__(self, other): |
| 621 | # An instance of ABCPolyBase is not considered a |
nothing calls this directly
no test coverage detected