diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-04-13 07:00:11 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-04-13 07:00:11 -0700 |
commit | 688bc60658b391524c6b641e0a5e5ecd73322d02 (patch) | |
tree | 1b210bb7361ce691e781884bf06f89c7ebd13360 /tools/py3tool.py | |
parent | 74b08b3f0284d9d2dd55a15dd98a3846913b1b51 (diff) | |
parent | 7f5af37e26ba2e99ad3ee6928b78437f601e96e0 (diff) | |
download | numpy-688bc60658b391524c6b641e0a5e5ecd73322d02.tar.gz |
Merge pull request #3232 from charris/2to3-apply-numliterals-fixer
2to3: Apply the `numliterals` fixer and skip the `long` fixer.
Diffstat (limited to 'tools/py3tool.py')
-rwxr-xr-x | tools/py3tool.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/py3tool.py b/tools/py3tool.py index 39a6bf062..0caf6ebeb 100755 --- a/tools/py3tool.py +++ b/tools/py3tool.py @@ -65,16 +65,16 @@ FIXES_TO_SKIP = [ 'input', 'intern', # 'isinstance', - 'itertools_imports', 'itertools', -# 'long', + 'itertools_imports', + 'long', 'map', 'metaclass', 'methodattrs', 'ne', # 'next', # 'nonzero', -# 'numliterals', + 'numliterals', 'operator', 'paren', 'print', |