diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-04-07 15:33:46 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-04-07 15:33:46 -0700 |
commit | 1340fa646d414b49856314bad339b4ae8ea4c4d8 (patch) | |
tree | 20fce4d1fe391d3afca4e32245c59fdc2e6d2601 /numpy/lib/utils.py | |
parent | 756d13449aa3d0b6be4439e87c5cb520c419d30b (diff) | |
parent | 6339930ff42f52259e898b18eb6e9dd7d1be4f86 (diff) | |
download | numpy-1340fa646d414b49856314bad339b4ae8ea4c4d8.tar.gz |
Merge pull request #3205 from charris/2to3-apply-dict-fixer
2to3: apply `dict` fixer.
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 4ed534455..75ba5bca6 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -755,7 +755,7 @@ def lookfor(what, module=None, import_modules=True, regenerate=False, whats = str(what).lower().split() if not whats: return - for name, (docstring, kind, index) in cache.iteritems(): + for name, (docstring, kind, index) in cache.items(): if kind in ('module', 'object'): # don't show modules or objects continue |