diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2013-04-12 21:01:00 -0600 |
|---|---|---|
| committer | Charles Harris <charlesr.harris@gmail.com> | 2013-04-12 21:01:00 -0600 |
| commit | 7e6c3eb5693c712241fb4f6cbbe855857f8f21bc (patch) | |
| tree | a1c04a3e29ef0c9e58cf5e2ee88a0731c92f2792 | |
| parent | 5daaef775933983bff87dbe8e9b3df15f40d279b (diff) | |
| download | numpy-7e6c3eb5693c712241fb4f6cbbe855857f8f21bc.tar.gz | |
2to3: Skip itertools_imports fixer.
No files are changed by the itertools_imports fixer so skip it. What
the fixer does is rename imports of imap, ifilter, and izip to map,
filter, and zip since the latter are iterators in Python 3.
Closes #3234
| -rwxr-xr-x | tools/py3tool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/py3tool.py b/tools/py3tool.py index 9d67bf2c5..6fca72eba 100755 --- a/tools/py3tool.py +++ b/tools/py3tool.py @@ -66,7 +66,7 @@ FIXES_TO_SKIP = [ 'intern', # 'isinstance', # 'itertools', -# 'itertools_imports', + 'itertools_imports', # 'long', 'map', 'metaclass', |
