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/distutils/system_info.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/distutils/system_info.py')
-rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 8c99d1996..125a1f175 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -2139,7 +2139,7 @@ def show_all(argv=None): show_only.append(n) show_all = not show_only _gdict_ = globals().copy() - for name, c in _gdict_.iteritems(): + for name, c in _gdict_.items(): if not inspect.isclass(c): continue if not issubclass(c, system_info) or c is system_info: |