First time here? Check out the FAQ!
answered 2013-01-15 16:39:28 +0100
Don't use import *. Instead of
from mpmath import * foo() + bar()
do
from mpmath import foo, bar foo() + bar()
or
import mpmath mpmath.foo() + mpmath.bar()