diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:15:21 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:15:21 +0000 |
commit | 364f7b87708a0f31b4bf09a510e0f325615b6b3f (patch) | |
tree | 434495b4a728caf9e94ee9b5f6f055956094b31d /numpy/lib/polynomial.py | |
parent | 064d50496ce946cb54e0901ac10967d9e0126b20 (diff) | |
download | numpy-364f7b87708a0f31b4bf09a510e0f325615b6b3f.tar.gz |
All non core regressions tests moved to their respective modules.
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r-- | numpy/lib/polynomial.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py index a97c07e87..bab32bf02 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -10,9 +10,8 @@ import re import warnings import numpy.core.numeric as NX -from numpy.core import isscalar, abs, finfo +from numpy.core import isscalar, abs, finfo, atleast_1d, hstack from numpy.lib.twodim_base import diag, vander -from numpy.lib.shape_base import hstack, atleast_1d from numpy.lib.function_base import trim_zeros, sort_complex from numpy.lib.type_check import iscomplex, real, imag from numpy.linalg import eigvals, lstsq |