80ac130
diff -up sympy-0.6.7/examples/advanced/pidigits.py.mpmath sympy-0.6.7/examples/advanced/pidigits.py
80ac130
--- sympy-0.6.7/examples/advanced/pidigits.py.mpmath	2010-01-28 23:54:00.000000000 +0200
80ac130
+++ sympy-0.6.7/examples/advanced/pidigits.py	2010-04-27 08:52:43.405300743 +0300
80ac130
@@ -5,8 +5,8 @@ Example shows arbitrary precision using 
80ac130
 computation of the digits of pi.
80ac130
 """
80ac130
 
80ac130
-from sympy.mpmath import libmpf
80ac130
-from sympy.mpmath import functions as mpf_funs
80ac130
+from mpmath import libmpf
80ac130
+from mpmath import functions as mpf_funs
80ac130
 
80ac130
 import math
80ac130
 from time import clock
80ac130
diff -up sympy-0.6.7/setup.py.mpmath sympy-0.6.7/setup.py
80ac130
--- sympy-0.6.7/setup.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/setup.py	2010-04-27 08:50:51.168363641 +0300
80ac130
@@ -63,11 +63,6 @@ modules = [
80ac130
     'sympy.logic',
80ac130
     'sympy.logic.algorithms',
80ac130
     'sympy.logic.utilities',
80ac130
-    'sympy.mpmath',
80ac130
-    'sympy.mpmath.libmp',
80ac130
-    'sympy.mpmath.functions',
80ac130
-    'sympy.mpmath.matrices',
80ac130
-    'sympy.mpmath.calculus',
80ac130
     'sympy.polys',
80ac130
     'sympy.printing',
80ac130
     'sympy.printing.pretty',
80ac130
@@ -169,7 +164,6 @@ tests = [
80ac130
     'sympy.integrals.tests',
80ac130
     'sympy.logic.tests',
80ac130
     'sympy.matrices.tests',
80ac130
-    'sympy.mpmath.tests',
80ac130
     'sympy.ntheory.tests',
80ac130
     'sympy.parsing.tests',
80ac130
     'sympy.physics.tests',
80ac130
diff -up sympy-0.6.7/sympy/core/basic.py.mpmath sympy-0.6.7/sympy/core/basic.py
80ac130
--- sympy-0.6.7/sympy/core/basic.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/core/basic.py	2010-04-27 08:51:31.264239225 +0300
80ac130
@@ -1,6 +1,6 @@
80ac130
 """Base class for all objects in sympy"""
80ac130
 
80ac130
-import sympy.mpmath as mpmath
80ac130
+import mpmath
80ac130
 
80ac130
 from decorators import _sympifyit
80ac130
 from assumptions import AssumeMeths, make__get_assumption
80ac130
diff -up sympy-0.6.7/sympy/core/evalf.py.mpmath sympy-0.6.7/sympy/core/evalf.py
80ac130
--- sympy-0.6.7/sympy/core/evalf.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/core/evalf.py	2010-04-27 08:50:51.169363495 +0300
80ac130
@@ -3,21 +3,21 @@ Adaptive numerical evaluation of SymPy e
80ac130
 for mathematical functions.
80ac130
 """
80ac130
 
80ac130
-from sympy.mpmath.libmp import (from_int, from_rational, fzero, normalize,
80ac130
+from mpmath.libmp import (from_int, from_rational, fzero, normalize,
80ac130
         bitcount, round_nearest, to_str, fone, fnone, fhalf, from_float,
80ac130
         to_float, fnone, to_int, mpf_lt, mpf_sqrt, mpf_cmp, mpf_abs,
80ac130
         mpf_pow_int, mpf_shift, mpf_add, mpf_mul, mpf_neg)
80ac130
 
80ac130
-import sympy.mpmath.libmp as libmp
80ac130
-from sympy.mpmath.libmp.libmpf import dps_to_prec
80ac130
-from sympy.mpmath import mpf, mpc, quadts, quadosc, mp, make_mpf
80ac130
-from sympy.mpmath.libmp import (mpf_pi, mpf_log, mpf_pow, mpf_sin, mpf_cos,
80ac130
+import mpmath.libmp as libmp
80ac130
+from mpmath.libmp.libmpf import dps_to_prec
80ac130
+from mpmath import mpf, mpc, quadts, quadosc, mp, make_mpf
80ac130
+from mpmath.libmp import (mpf_pi, mpf_log, mpf_pow, mpf_sin, mpf_cos,
80ac130
         mpf_atan, mpf_atan2, mpf_e, mpf_exp, from_man_exp)
80ac130
-from sympy.mpmath.libmp.backend import MPZ
80ac130
-from sympy.mpmath import nsum
80ac130
-from sympy.mpmath import inf as mpmath_inf
80ac130
+from mpmath.libmp.backend import MPZ
80ac130
+from mpmath import nsum
80ac130
+from mpmath import inf as mpmath_inf
80ac130
 
80ac130
-from sympy.mpmath.libmp.gammazeta import mpf_bernoulli
80ac130
+from mpmath.libmp.gammazeta import mpf_bernoulli
80ac130
 
80ac130
 import math
80ac130
 
80ac130
diff -up sympy-0.6.7/sympy/core/function.py.mpmath sympy-0.6.7/sympy/core/function.py
80ac130
--- sympy-0.6.7/sympy/core/function.py.mpmath	2010-03-17 22:37:28.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/core/function.py	2010-04-27 09:32:14.636301031 +0300
80ac130
@@ -40,7 +40,7 @@ from multidimensional import vectorize
80ac130
 from sympy.utilities.decorator import deprecated
80ac130
 from sympy.utilities import all
80ac130
 
80ac130
-from sympy import mpmath
80ac130
+import mpmath
80ac130
 
80ac130
 class PoleError(Exception):
80ac130
     pass
80ac130
diff -up sympy-0.6.7/sympy/core/numbers.py.mpmath sympy-0.6.7/sympy/core/numbers.py
80ac130
--- sympy-0.6.7/sympy/core/numbers.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/core/numbers.py	2010-04-27 08:50:51.170363259 +0300
80ac130
@@ -1,9 +1,9 @@
80ac130
 from basic import Atom, SingletonMeta, S, Basic
80ac130
 from decorators import _sympifyit
80ac130
 from cache import Memoizer, cacheit, clear_cache
80ac130
-import sympy.mpmath as mpmath
80ac130
-import sympy.mpmath.libmp as mlib
80ac130
-from sympy.mpmath.libmp import mpf_pow, mpf_pi, mpf_e, phi_fixed
80ac130
+import mpmath as mpmath
80ac130
+import mpmath.libmp as mlib
80ac130
+from mpmath.libmp import mpf_pow, mpf_pi, mpf_e, phi_fixed
80ac130
 import decimal
80ac130
 
80ac130
 rnd = mlib.round_nearest
80ac130
diff -up sympy-0.6.7/sympy/core/power.py.mpmath sympy-0.6.7/sympy/core/power.py
80ac130
--- sympy-0.6.7/sympy/core/power.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/core/power.py	2010-04-27 09:33:29.416300946 +0300
80ac130
@@ -3,7 +3,7 @@ from sympify import _sympify
80ac130
 from cache import cacheit
80ac130
 from symbol import Symbol, Wild
80ac130
 
80ac130
-from sympy import mpmath
80ac130
+import mpmath
80ac130
 
80ac130
 from math import log as _log
80ac130
 
80ac130
diff -up sympy-0.6.7/sympy/core/sets.py.mpmath sympy-0.6.7/sympy/core/sets.py
80ac130
--- sympy-0.6.7/sympy/core/sets.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/core/sets.py	2010-04-27 08:55:33.639300968 +0300
80ac130
@@ -1,6 +1,6 @@
80ac130
 from basic import Basic, SingletonMeta, S
80ac130
 from sympify import _sympify
80ac130
-from sympy.mpmath import mpi
80ac130
+from mpmath import mpi
80ac130
 
80ac130
 class Set(Basic):
80ac130
     """
80ac130
diff -up sympy-0.6.7/sympy/core/tests/test_numbers.py.mpmath sympy-0.6.7/sympy/core/tests/test_numbers.py
80ac130
--- sympy-0.6.7/sympy/core/tests/test_numbers.py.mpmath	2010-03-10 00:09:45.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/core/tests/test_numbers.py	2010-04-27 09:32:39.883300975 +0300
80ac130
@@ -4,7 +4,7 @@ from sympy.core.power import integer_nth
80ac130
 
80ac130
 from sympy.core.numbers import igcd, ilcm, igcdex, seterr
80ac130
 from sympy.utilities.pytest import raises
80ac130
-from sympy import mpmath
80ac130
+import mpmath
80ac130
 
80ac130
 def test_seterr():
80ac130
     seterr(divide = True)
80ac130
diff -up sympy-0.6.7/sympy/core/tests/test_sets.py.mpmath sympy-0.6.7/sympy/core/tests/test_sets.py
80ac130
--- sympy-0.6.7/sympy/core/tests/test_sets.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/core/tests/test_sets.py	2010-04-27 08:55:04.312301024 +0300
80ac130
@@ -1,5 +1,5 @@
80ac130
 from sympy import Symbol, Set, Union, Interval, oo, S, Inequality, max_, min_, raises
80ac130
-from sympy.mpmath import mpi
80ac130
+from mpmath import mpi
80ac130
 
80ac130
 def test_interval_arguments():
80ac130
     assert Interval(0, oo) == Interval(0, oo, False, True)
80ac130
diff -up sympy-0.6.7/sympy/functions/combinatorial/numbers.py.mpmath sympy-0.6.7/sympy/functions/combinatorial/numbers.py
80ac130
--- sympy-0.6.7/sympy/functions/combinatorial/numbers.py.mpmath	2010-03-17 22:37:28.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/functions/combinatorial/numbers.py	2010-04-27 08:58:34.753300999 +0300
80ac130
@@ -9,7 +9,7 @@ the separate 'factorials' module.
80ac130
 
80ac130
 from sympy import Function, S, Symbol, Rational, oo, Integer, C
80ac130
 
80ac130
-from sympy.mpmath import bernfrac
80ac130
+from mpmath import bernfrac
80ac130
 
80ac130
 from sympy.utilities.decorator import deprecated
80ac130
 
80ac130
diff -up sympy-0.6.7/sympy/functions/special/error_functions.py.mpmath sympy-0.6.7/sympy/functions/special/error_functions.py
80ac130
--- sympy-0.6.7/sympy/functions/special/error_functions.py.mpmath	2010-03-17 22:37:28.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/functions/special/error_functions.py	2010-04-27 08:58:16.129301012 +0300
80ac130
@@ -70,6 +70,6 @@ class erf(Function):
80ac130
         if arg.is_Number:
80ac130
             # XXX: Temporary hack. FIX THIS
80ac130
             from sympy.core.numbers import Real
80ac130
-            from sympy.mpmath import erf
80ac130
+            from mpmath import erf
80ac130
             e = erf(float(arg))
80ac130
             return Real(str(e))
80ac130
diff -up sympy-0.6.7/sympy/matrices/matrices.py.mpmath sympy-0.6.7/sympy/matrices/matrices.py
80ac130
--- sympy-0.6.7/sympy/matrices/matrices.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/matrices/matrices.py	2010-04-27 08:54:06.171176365 +0300
80ac130
@@ -804,7 +804,7 @@ class Matrix(object):
80ac130
         self is the coefficient matrix A and rhs is the right side b.
80ac130
 
80ac130
         This is for symbolic matrices, for real or complex ones use
80ac130
-        sympy.mpmath.lu_solve or sympy.mpmath.qr_solve.
80ac130
+        mpmath.lu_solve or mpmath.qr_solve.
80ac130
         """
80ac130
         assert rhs.rows == self.rows
80ac130
         A, perm = self.LUdecomposition_Simple(iszerofunc=_iszero)
80ac130
@@ -1023,7 +1023,7 @@ class Matrix(object):
80ac130
         to use QRsolve.
80ac130
 
80ac130
         This is mainly for educational purposes and symbolic matrices, for real
80ac130
-        (or complex) matrices use sympy.mpmath.qr_solve.
80ac130
+        (or complex) matrices use mpmath.qr_solve.
80ac130
         """
80ac130
 
80ac130
         Q, R = self.QRdecomposition()
80ac130
diff -up sympy-0.6.7/sympy/ntheory/partitions_.py.mpmath sympy-0.6.7/sympy/ntheory/partitions_.py
80ac130
--- sympy-0.6.7/sympy/ntheory/partitions_.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/ntheory/partitions_.py	2010-04-27 08:50:51.171363156 +0300
80ac130
@@ -1,4 +1,4 @@
80ac130
-from sympy.mpmath.libmp import (fzero,
80ac130
+from mpmath.libmp import (fzero,
80ac130
     from_man_exp, from_int, from_rational,
80ac130
     fone, ftwo, fhalf, bitcount, to_int, to_str, mpf_mul, mpf_div, mpf_sub,
80ac130
     mpf_add,
80ac130
diff -up sympy-0.6.7/sympy/polys/integerpolys.py.mpmath sympy-0.6.7/sympy/polys/integerpolys.py
80ac130
--- sympy-0.6.7/sympy/polys/integerpolys.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/polys/integerpolys.py	2010-04-27 08:50:51.173363035 +0300
80ac130
@@ -15,7 +15,7 @@ from math import floor, ceil, log, sqrt
80ac130
 from random import randint
80ac130
 
80ac130
 from sympy.core.numbers import igcd, igcdex
80ac130
-from sympy.mpmath.libmp import isqrt
80ac130
+from mpmath.libmp import isqrt
80ac130
 
80ac130
 INT_TYPE = int
80ac130
 INT_ZERO = 0
80ac130
diff -up sympy-0.6.7/sympy/printing/latex.py.mpmath sympy-0.6.7/sympy/printing/latex.py
80ac130
--- sympy-0.6.7/sympy/printing/latex.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/printing/latex.py	2010-04-27 08:50:51.174363059 +0300
80ac130
@@ -8,8 +8,8 @@ from conventions import split_super_sub
80ac130
 from sympy.simplify import fraction
80ac130
 from sympy import Interval
80ac130
 
80ac130
-import sympy.mpmath.libmp as mlib
80ac130
-from sympy.mpmath.libmp import prec_to_dps
80ac130
+import mpmath.libmp as mlib
80ac130
+from mpmath.libmp import prec_to_dps
80ac130
 
80ac130
 import re
80ac130
 
80ac130
diff -up sympy-0.6.7/sympy/printing/repr.py.mpmath sympy-0.6.7/sympy/printing/repr.py
80ac130
--- sympy-0.6.7/sympy/printing/repr.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/printing/repr.py	2010-04-27 08:50:51.174363059 +0300
80ac130
@@ -8,8 +8,8 @@ relation eval(srepr(expr))=expr holds in
80ac130
 from printer import Printer
80ac130
 from sympy.printing.precedence import precedence
80ac130
 from sympy.core import Basic
80ac130
-import sympy.mpmath.libmp as mlib
80ac130
-from sympy.mpmath.libmp import prec_to_dps, repr_dps
80ac130
+import mpmath.libmp as mlib
80ac130
+from mpmath.libmp import prec_to_dps, repr_dps
80ac130
 
80ac130
 class ReprPrinter(Printer):
80ac130
     printmethod = "_sympyrepr_"
80ac130
diff -up sympy-0.6.7/sympy/printing/str.py.mpmath sympy-0.6.7/sympy/printing/str.py
80ac130
--- sympy-0.6.7/sympy/printing/str.py.mpmath	2010-03-17 22:37:37.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/printing/str.py	2010-04-27 08:50:51.175363132 +0300
80ac130
@@ -10,8 +10,8 @@ from sympy.core.power import Pow
80ac130
 from sympy.core.symbol import Symbol, Wild
80ac130
 from sympy.core.basic import Basic
80ac130
 
80ac130
-import sympy.mpmath.libmp as mlib
80ac130
-from sympy.mpmath.libmp import prec_to_dps
80ac130
+import mpmath.libmp as mlib
80ac130
+from mpmath.libmp import prec_to_dps
80ac130
 
80ac130
 class StrPrinter(Printer):
80ac130
     printmethod = "_sympystr_"
80ac130
diff -up sympy-0.6.7/sympy/simplify/simplify.py.mpmath sympy-0.6.7/sympy/simplify/simplify.py
80ac130
--- sympy-0.6.7/sympy/simplify/simplify.py.mpmath	2010-03-17 22:37:28.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/simplify/simplify.py	2010-04-27 08:53:12.251300999 +0300
80ac130
@@ -14,7 +14,7 @@ from sympy.simplify.cse_main import cse
80ac130
 
80ac130
 from sympy.polys import Poly, factor, PolynomialError
80ac130
 
80ac130
-import sympy.mpmath as mpmath
80ac130
+import mpmath
80ac130
 
80ac130
 def fraction(expr, exact=False):
80ac130
     """Returns a pair with expression's numerator and denominator.
80ac130
diff -up sympy-0.6.7/sympy/solvers/solvers.py.mpmath sympy-0.6.7/sympy/solvers/solvers.py
80ac130
--- sympy-0.6.7/sympy/solvers/solvers.py.mpmath	2010-03-10 00:09:45.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/solvers/solvers.py	2010-04-27 08:57:48.546300975 +0300
80ac130
@@ -30,7 +30,7 @@ from sympy.functions.elementary.piecewis
80ac130
 from sympy.utilities import any, all
80ac130
 from sympy.utilities.iterables import iff
80ac130
 from sympy.utilities.lambdify import lambdify
80ac130
-from sympy.mpmath import findroot
80ac130
+from mpmath import findroot
80ac130
 
80ac130
 from sympy.solvers.polysys import solve_poly_system
80ac130
 
80ac130
@@ -746,7 +746,8 @@ def nsolve(*args, **kwargs):
80ac130
 
80ac130
     >>> from sympy import Symbol, nsolve
80ac130
     >>> import sympy
80ac130
-    >>> sympy.mpmath.mp.dps = 15
80ac130
+    >>> import mpmath 
80ac130
+    >>> mpmath.mp.dps = 15
80ac130
     >>> x1 = Symbol('x1')
80ac130
     >>> x2 = Symbol('x2')
80ac130
     >>> f1 = 3 * x1**2 - 2 * x2**2 - 1
80ac130
diff -up sympy-0.6.7/sympy/solvers/tests/test_numeric.py.mpmath sympy-0.6.7/sympy/solvers/tests/test_numeric.py
80ac130
--- sympy-0.6.7/sympy/solvers/tests/test_numeric.py.mpmath	2010-01-28 23:54:00.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/solvers/tests/test_numeric.py	2010-04-27 08:57:01.284300981 +0300
80ac130
@@ -1,4 +1,4 @@
80ac130
-from sympy.mpmath import mnorm, mpf
80ac130
+from mpmath import mnorm, mpf
80ac130
 from sympy.solvers import nsolve
80ac130
 from sympy.utilities.lambdify import lambdify
80ac130
 from sympy import Symbol, Matrix, sqrt, Eq
80ac130
diff -up sympy-0.6.7/sympy/statistics/distributions.py.mpmath sympy-0.6.7/sympy/statistics/distributions.py
80ac130
--- sympy-0.6.7/sympy/statistics/distributions.py.mpmath	2010-02-16 01:30:47.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/statistics/distributions.py	2010-04-27 08:54:35.546300698 +0300
80ac130
@@ -129,7 +129,7 @@ class Normal(ContinuousProbability):
80ac130
         # error function is not yet implemented in SymPy but can easily be
80ac130
         # computed numerically
80ac130
 
80ac130
-        from sympy.mpmath import mpf, erfinv
80ac130
+        from mpmath import mpf, erfinv
80ac130
 
80ac130
         # calculate y = ierf(p) by solving erf(y) - p = 0
80ac130
         y = erfinv(mpf(p))
80ac130
diff -up sympy-0.6.7/sympy/statistics/tests/test_statistics.py.mpmath sympy-0.6.7/sympy/statistics/tests/test_statistics.py
80ac130
--- sympy-0.6.7/sympy/statistics/tests/test_statistics.py.mpmath	2010-01-28 23:54:00.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/statistics/tests/test_statistics.py	2010-04-27 08:54:23.178301026 +0300
80ac130
@@ -4,7 +4,7 @@ from sympy.statistics import Normal, Uni
80ac130
 from sympy.statistics.distributions import PDF
80ac130
 import operator # XXX weird abs/sympy.abs conflict
80ac130
 
80ac130
-from sympy.mpmath import mp
80ac130
+from mpmath import mp
80ac130
 
80ac130
 def test_normal():
80ac130
     dps, mp.dps = mp.dps, 20
80ac130
diff -up sympy-0.6.7/sympy/test_external/test_numpy.py.mpmath sympy-0.6.7/sympy/test_external/test_numpy.py
80ac130
--- sympy-0.6.7/sympy/test_external/test_numpy.py.mpmath	2010-03-17 22:37:28.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/test_external/test_numpy.py	2010-04-27 08:50:51.176363100 +0300
80ac130
@@ -17,7 +17,7 @@ from sympy import (Rational, Symbol, lis
80ac130
         symarray, symbols)
80ac130
 import sympy
80ac130
 
80ac130
-from sympy import mpmath
80ac130
+import mpmath
80ac130
 mpmath.mp.dps = 16
80ac130
 sin02 = mpmath.mpf("0.198669330795061215459412627")
80ac130
 
80ac130
diff -up sympy-0.6.7/sympy/utilities/lambdify.py.mpmath sympy-0.6.7/sympy/utilities/lambdify.py
80ac130
--- sympy-0.6.7/sympy/utilities/lambdify.py.mpmath	2010-03-17 22:37:28.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/utilities/lambdify.py	2010-04-27 08:56:39.365300857 +0300
80ac130
@@ -58,7 +58,7 @@ NUMPY_TRANSLATIONS = {
80ac130
 # Available modules:
80ac130
 MODULES = {
80ac130
     "math":(MATH, MATH_TRANSLATIONS, ("from math import *",)),
80ac130
-    "mpmath":(MPMATH, MPMATH_TRANSLATIONS, ("from sympy.mpmath import *",)),
80ac130
+    "mpmath":(MPMATH, MPMATH_TRANSLATIONS, ("from mpmath import *",)),
80ac130
     "numpy":(NUMPY, NUMPY_TRANSLATIONS, ("from numpy import *",)),
80ac130
     "sympy":(SYMPY, {}, ("from sympy.functions import *",
80ac130
                          "from sympy.matrices import Matrix",
80ac130
diff -up sympy-0.6.7/sympy/utilities/runtests.py.mpmath sympy-0.6.7/sympy/utilities/runtests.py
80ac130
diff -up sympy-0.6.7/sympy/utilities/tests/test_lambdify.py.mpmath sympy-0.6.7/sympy/utilities/tests/test_lambdify.py
80ac130
--- sympy-0.6.7/sympy/utilities/tests/test_lambdify.py.mpmath	2010-01-28 23:54:00.000000000 +0200
80ac130
+++ sympy-0.6.7/sympy/utilities/tests/test_lambdify.py	2010-04-27 09:32:59.977300954 +0300
80ac130
@@ -1,7 +1,7 @@
80ac130
 from sympy.utilities.pytest import XFAIL
80ac130
 from sympy import (symbols, lambdify, sqrt, sin, cos, pi, atan, Rational, Real,
80ac130
         Matrix, Lambda, exp, Integral, oo)
80ac130
-from sympy import mpmath
80ac130
+import mpmath
80ac130
 import math, sympy
80ac130
 
80ac130
 # high precision output of sin(0.2*pi) is used to detect if precision is lost unwanted