diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-10 13:33:45 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-10 13:33:45 +0000 |
commit | c261b1f8fc16a0001d90fd3e024d2fd13f28ade1 (patch) | |
tree | 65f08eb25f15be993a8933747a54cb40c3d8ee30 /numpy/lib/utils.py | |
parent | a085eeb1a16daa01645afaa151225ab4ae66f240 (diff) | |
download | numpy-c261b1f8fc16a0001d90fd3e024d2fd13f28ade1.tar.gz |
More fixes to masked array support of output arrays.
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 14bc16680..8306b799c 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -1,7 +1,6 @@ import sys, os import inspect import types -import pydoc from numpy.core.numerictypes import obj2sctype from numpy.core.multiarray import dtype from numpy.core import product, ndarray @@ -243,6 +242,7 @@ def info(object=None,maxwidth=76,output=sys.stdout,toplevel='numpy'): p[0]*(x**N-1) + p[1]*(x**N-2) + ... + p[N-2]*x + p[N-1] """ global _namedict, _dictlist + import pydoc if hasattr(object,'_ppimport_importer') or \ hasattr(object, '_ppimport_module'): |