Why does Poly.integrate() function doesn't give correct answer for asymptotic expressions like O(x**2)? Example: from sympy import * x = Symbol('x') exp = Poly(O(x**4)) print(exp.integrate()) #prints 1/2*O(x**4)**2 instead of O(x**5)
-- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to sympy+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/62a7fd01-54f1-4eeb-b9b9-46bd3c42879bn%40googlegroups.com.