diff options
author | Pauli Virtanen <pav@iki.fi> | 2010-02-21 02:47:48 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2010-02-21 02:47:48 +0000 |
commit | fab2b47311a315942ae12fa56a7fef43f84d3c21 (patch) | |
tree | cb6dee9381a7d91d6f27220af544c7e335fc8439 | |
parent | 866abe53b0113b890893787f966e812ff771e11f (diff) | |
download | numpy-fab2b47311a315942ae12fa56a7fef43f84d3c21.tar.gz |
3K: polynomial: make tests to import
-rw-r--r-- | numpy/polynomial/tests/test_chebyshev.py | 1 | ||||
-rw-r--r-- | numpy/polynomial/tests/test_polynomial.py | 1 | ||||
-rw-r--r-- | numpy/polynomial/tests/test_polyutils.py | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/numpy/polynomial/tests/test_chebyshev.py b/numpy/polynomial/tests/test_chebyshev.py index 793458096..4579902ce 100644 --- a/numpy/polynomial/tests/test_chebyshev.py +++ b/numpy/polynomial/tests/test_chebyshev.py @@ -6,7 +6,6 @@ from __future__ import division import numpy as np import numpy.polynomial.chebyshev as ch from numpy.testing import * -from exceptions import TypeError, ValueError def trim(x) : return ch.chebtrim(x, tol=1e-6) diff --git a/numpy/polynomial/tests/test_polynomial.py b/numpy/polynomial/tests/test_polynomial.py index d4baaea8a..8386aed10 100644 --- a/numpy/polynomial/tests/test_polynomial.py +++ b/numpy/polynomial/tests/test_polynomial.py @@ -6,7 +6,6 @@ from __future__ import division import numpy as np import numpy.polynomial.polynomial as poly from numpy.testing import * -from exceptions import TypeError, ValueError def trim(x) : return poly.polytrim(x, tol=1e-6) diff --git a/numpy/polynomial/tests/test_polyutils.py b/numpy/polynomial/tests/test_polyutils.py index 5c144ea68..86f2a5b9b 100644 --- a/numpy/polynomial/tests/test_polyutils.py +++ b/numpy/polynomial/tests/test_polyutils.py @@ -6,7 +6,6 @@ from __future__ import division import numpy as np import numpy.polynomial.polyutils as pu from numpy.testing import * -from exceptions import TypeError, ValueError class TestMisc(TestCase) : |