| 1 | initial version |
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()
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.