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/utils.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/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 3f7d22092..8a119722b 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -316,8 +316,7 @@ def info(object=None,maxwidth=76,output=sys.stdout,toplevel='numpy'): """Get help information for a function, class, or module. Example: - >>> from numpy import * - >>> info(polyval) # doctest: +SKIP + >>> np.info(np.polyval) # doctest: +SKIP polyval(p, x) |