answered 12 years ago
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()