diff options
author | Pauli Virtanen <pav@iki.fi> | 2008-07-20 16:28:04 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2008-07-20 16:28:04 +0000 |
commit | 5808ab5ef5cc0d16c74dc14d7eefa22386f16e81 (patch) | |
tree | cb056f99ee565fa86dbf8d527a616270897dc323 /numpy/lib/utils.py | |
parent | 3db00b171882d289158041d630dd4b0aaf314a2d (diff) | |
download | numpy-5808ab5ef5cc0d16c74dc14d7eefa22386f16e81.tar.gz |
Add a pydoc import in lookfor; missed in the import refactoring.
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 7df342e02..9d37dc1b5 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -502,6 +502,8 @@ def lookfor(what, module=None, import_modules=True, regenerate=False): Re-generate the docstring cache """ + import pydoc + # Cache cache = _lookfor_generate_cache(module, import_modules, regenerate) |