First time here? Check out the FAQ!
answered 13 years ago
It seems to be a bug. sympy can recognize infinity but not minus infinity of sage. You can try to directly call sympy integrate instead
import sympy as sp a=sp.Symbol('a') b=sp.integrate(1/x^2,(x,a,-1))._sage_() b.substitute(a=-oo)