From d7b36a129957b83efe081b81c67f176919282c99 Mon Sep 17 00:00:00 2001 From: "fredrik.johansson" Date: Sun, 29 Jul 2007 13:17:00 +0000 Subject: [PATCH] fix module imports in two of the example scripts (leaving others unchanged as they don't work yet anyway) --- examples/pidigits.py | 4 ++-- examples/plotting.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/pidigits.py b/examples/pidigits.py index a38f13e..0f35212 100644 --- a/examples/pidigits.py +++ b/examples/pidigits.py @@ -1,7 +1,7 @@ import sys sys.path.append("..") -from sympy.modules.numerics import * -from sympy.modules.numerics.utils_ import * +from sympy.numerics import * +from sympy.numerics.utils_ import * import math from time import clock diff --git a/examples/plotting.py b/examples/plotting.py index d4035de..706ed25 100644 --- a/examples/plotting.py +++ b/examples/plotting.py @@ -9,7 +9,7 @@ sys.path.append("..") from time import sleep from sympy import Symbol, sin, cos, log, pi, sqrt -from sympy.modules.plotting import Plot +from sympy.plotting import Plot if __name__ == "__main__": x, y = Symbol('x'), Symbol('y') -- 2.11.4.GIT