diff options
author | njsmith <njs@pobox.com> | 2013-04-07 03:39:34 -0700 |
---|---|---|
committer | njsmith <njs@pobox.com> | 2013-04-07 03:39:34 -0700 |
commit | ef76d4928ea1591d382fceaa416678907ea76098 (patch) | |
tree | 498f3e5c9a4efe4149cf2913ab18d2eb81c1d59d /tools/py3tool.py | |
parent | 3c70e20a5f1aed4098ba66d21e6a1f60edc6fddd (diff) | |
parent | 77e09f14bdf9eeebbd20ca861cb51da3e570bb72 (diff) | |
download | numpy-ef76d4928ea1591d382fceaa416678907ea76098.tar.gz |
Merge pull request #3202 from charris/2to3-reduce-fixups
MAINT: Cleanup some imports involving reduce.
Diffstat (limited to 'tools/py3tool.py')
-rwxr-xr-x | tools/py3tool.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/py3tool.py b/tools/py3tool.py index 45a8def4c..01bd4e488 100755 --- a/tools/py3tool.py +++ b/tools/py3tool.py @@ -40,15 +40,6 @@ EXTRA_2TO3_FLAGS = { 'numpy/core/defchararray.py': '-x unicode', 'numpy/compat/py3k.py': '-x unicode', 'numpy/ma/timer_comparison.py': 'skip', - 'numpy/distutils/system_info.py': '-x reduce', - 'numpy/f2py/auxfuncs.py': '-x reduce', - 'numpy/lib/arrayterator.py': '-x reduce', - 'numpy/lib/tests/test_arrayterator.py': '-x reduce', - 'numpy/ma/core.py': '-x reduce', - 'numpy/ma/tests/test_core.py': '-x reduce', - 'numpy/ma/tests/test_old_ma.py': '-x reduce', - 'numpy/ma/timer_comparison.py': '-x reduce', - 'numpy/oldnumeric/ma.py': '-x reduce', } # Names of fixers to skip when running 2to3 |