I used sympy to calculate some integral as follows.
#Calculate Calculus
import sympy
x = sympy.Symbol('x')
f = (6-x*x)**(1.5)
f.integrate()
This will fail and throw excepiton like:
ValueError: gamma function pole
It works fine if I just use an integer as power num
f = (6-x*x)**(2)
#result: x**5/5 - 4*x**3 + 36*x