diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2007-02-18 22:43:40 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2007-02-18 22:43:40 +0000 |
commit | 9bcf9ef90b0893a157e5d69478b9a9566b966249 (patch) | |
tree | 409d290d8d465d44b801cf5d38ee4677e7976415 /numpy/lib/polynomial.py | |
parent | b860a39925a5e0a49d54fa363ccdf6113dfef12d (diff) | |
download | numpy-9bcf9ef90b0893a157e5d69478b9a9566b966249.tar.gz |
Fix doctests.
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 ff429e3f8..4e1db5525 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -56,7 +56,7 @@ def poly(seq_of_zeros): >>> b = roots([1,3,1,5,6]) >>> poly(b) - array([1., 3., 1., 5., 6.]) + array([ 1., 3., 1., 5., 6.]) """ seq_of_zeros = atleast_1d(seq_of_zeros) |