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/utils.py | |
parent | b860a39925a5e0a49d54fa363ccdf6113dfef12d (diff) | |
download | numpy-9bcf9ef90b0893a157e5d69478b9a9566b966249.tar.gz |
Fix doctests.
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index ed156bb79..743985250 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -269,7 +269,8 @@ def info(object=None,maxwidth=76,output=sys.stdout,toplevel='numpy'): Example: >>> from numpy import * - >>> info(polyval) + >>> info(polyval) # doctest: +SKIP + polyval(p, x) Evaluate the polymnomial p at x. |