diff options
author | Alan McIntyre <alan.mcintyre@local> | 2008-07-03 03:51:46 +0000 |
---|---|---|
committer | Alan McIntyre <alan.mcintyre@local> | 2008-07-03 03:51:46 +0000 |
commit | 94bc330296e01d8fc0cb14aba1354ddb6d8587cc (patch) | |
tree | 1137428631e3d56ed3251a732e82dfd8778547c0 /numpy/lib/polynomial.py | |
parent | 24af452d6573d66faedff2b4b98993a8c0664e97 (diff) | |
download | numpy-94bc330296e01d8fc0cb14aba1354ddb6d8587cc.tar.gz |
Use the implicit "import numpy as np" made available to all doctests instead of an explicit
import.
Remove ">>>" from bartlett plotting example since it currently requires matplotlib.
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r-- | numpy/lib/polynomial.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py index ab2febf35..141e85e25 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -223,7 +223,6 @@ def polyfit(x, y, deg, rcond=None, full=False): ----- RankWarning : if rank is reduced and not full output The warnings can be turned off by: - >>> import numpy as np >>> import warnings >>> warnings.simplefilter('ignore',np.RankWarning) |