[Scipy-svn] r6830 - trunk/scipy/io/tests

scipy-svn at scipy.org scipy-svn at scipy.org
Sun Oct 10 01:33:44 EDT 2010


Author: warren.weckesser
Date: 2010-10-10 00:33:43 -0500 (Sun, 10 Oct 2010)
New Revision: 6830

Modified:
   trunk/scipy/io/tests/test_mmio.py
Log:
TST: io: Don't use 'import *'.  Remove unused imports.

Modified: trunk/scipy/io/tests/test_mmio.py
===================================================================
--- trunk/scipy/io/tests/test_mmio.py	2010-10-10 04:40:47 UTC (rev 6829)
+++ trunk/scipy/io/tests/test_mmio.py	2010-10-10 05:33:43 UTC (rev 6830)
@@ -2,12 +2,13 @@
 
 from tempfile import mktemp
 from numpy import array,transpose
-from numpy.testing import *
-from numpy.compat import asbytes, asbytes_nested
+from numpy.testing import TestCase, run_module_suite, assert_array_almost_equal, \
+            assert_equal, rand
 
 import scipy.sparse
 from scipy.io.mmio import mminfo,mmread,mmwrite
 
+
 class TestMMIOArray(TestCase):
 
     def test_simple(self):




More information about the Scipy-svn mailing list