diff options
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) |