[Scipy-svn] r4728 - in trunk/scipy/lib: blas/tests lapack/tests
scipy-svn@scip...
scipy-svn@scip...
Thu Sep 18 14:30:26 CDT 2008
Author: alan.mcintyre
Date: 2008-09-18 14:30:13 -0500 (Thu, 18 Sep 2008)
New Revision: 4728
Modified:
trunk/scipy/lib/blas/tests/test_blas.py
trunk/scipy/lib/blas/tests/test_fblas.py
trunk/scipy/lib/lapack/tests/test_lapack.py
Log:
Remove unused imports.
Modified: trunk/scipy/lib/blas/tests/test_blas.py
===================================================================
--- trunk/scipy/lib/blas/tests/test_blas.py 2008-09-18 19:28:38 UTC (rev 4727)
+++ trunk/scipy/lib/blas/tests/test_blas.py 2008-09-18 19:30:13 UTC (rev 4728)
@@ -12,10 +12,9 @@
python tests/test_blas.py [<level>]
"""
-import sys
import math
-from numpy import arange, add, array
+from numpy import array
from numpy.testing import *
from scipy.lib.blas import fblas
from scipy.lib.blas import cblas
Modified: trunk/scipy/lib/blas/tests/test_fblas.py
===================================================================
--- trunk/scipy/lib/blas/tests/test_fblas.py 2008-09-18 19:28:38 UTC (rev 4727)
+++ trunk/scipy/lib/blas/tests/test_fblas.py 2008-09-18 19:30:13 UTC (rev 4728)
@@ -6,10 +6,8 @@
# !! Complex calculations really aren't checked that carefully.
# !! Only real valued complex numbers are used in tests.
-import sys
-from numpy import zeros, transpose, newaxis, shape, float32, \
- float64, complex64, complex128, arange, array, common_type, \
- conjugate
+from numpy import zeros, transpose, newaxis, shape, float32, float64, \
+ complex64, complex128, arange, array, common_type, conjugate
from numpy.testing import *
from scipy.lib.blas import fblas
Modified: trunk/scipy/lib/lapack/tests/test_lapack.py
===================================================================
--- trunk/scipy/lib/lapack/tests/test_lapack.py 2008-09-18 19:28:38 UTC (rev 4727)
+++ trunk/scipy/lib/lapack/tests/test_lapack.py 2008-09-18 19:30:13 UTC (rev 4728)
@@ -14,10 +14,8 @@
can be run (see the isrunnable method).
'''
-import os
-import sys
from numpy.testing import *
-from numpy import dot, ones, zeros
+from numpy import ones
from scipy.lib.lapack import flapack, clapack
More information about the Scipy-svn
mailing list