(self, other)
| 1396 | return polydiv(self, other) |
| 1397 | |
| 1398 | def __rtruediv__(self, other): |
| 1399 | if isscalar(other): |
| 1400 | return poly1d(other / self.coeffs) |
| 1401 | else: |
| 1402 | other = poly1d(other) |
| 1403 | return polydiv(other, self) |
| 1404 | |
| 1405 | def __eq__(self, other): |
| 1406 | if not isinstance(other, poly1d): |