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/recfunctions.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/recfunctions.py')
-rw-r--r-- | numpy/lib/recfunctions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/recfunctions.py b/numpy/lib/recfunctions.py index b96186bbd..a9f480f5d 100644 --- a/numpy/lib/recfunctions.py +++ b/numpy/lib/recfunctions.py @@ -317,7 +317,7 @@ def _fix_defaults(output, defaults=None): """ names = output.dtype.names (data, mask, fill_value) = (output.data, output.mask, output.fill_value) - for (k, v) in (defaults or {}).iteritems(): + for (k, v) in (defaults or {}).items(): if k in names: fill_value[k] = v data[k][mask[k]] = v |