(self, other)
| 1385 | return poly1d(polysub(self.coeffs, other.coeffs)) |
| 1386 | |
| 1387 | def __rsub__(self, other): |
| 1388 | other = poly1d(other) |
| 1389 | return poly1d(polysub(other.coeffs, self.coeffs)) |
| 1390 | |
| 1391 | def __truediv__(self, other): |
| 1392 | if isscalar(other): |