diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 22:46:30 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 22:46:30 +0000 |
commit | 0f05f3848fddb57a5ae895d8ac0f9d728ab8a9ed (patch) | |
tree | 0ddef2915e3b4520f8f510fbc1364bcc67cde2bb /numpy/lib/polynomial.py | |
parent | 6d2d01b757e78d2c0487ec22e2101467686b2a7f (diff) | |
download | numpy-0f05f3848fddb57a5ae895d8ac0f9d728ab8a9ed.tar.gz |
Final commit before merge to trunk.
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r-- | numpy/lib/polynomial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py index 5bc65cafd..62d195c8a 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -9,7 +9,7 @@ __all__ = ['poly', 'roots', 'polyint', 'polyder', 'polyadd', import re import numpy.core.numeric as NX -from type_check import isscalar +from numpy.core import isscalar from twodim_base import diag, vander from shape_base import hstack, atleast_1d from function_base import trim_zeros, sort_complex |