(self, other)
| 1379 | __truediv__ = __div__ |
| 1380 | |
| 1381 | def __rdiv__(self, other): |
| 1382 | if isscalar(other): |
| 1383 | return poly1d(other/self.coeffs) |
| 1384 | else: |
| 1385 | other = poly1d(other) |
| 1386 | return polydiv(other, self) |
| 1387 | |
| 1388 | __rtruediv__ = __rdiv__ |
| 1389 |