summaryrefslogtreecommitdiff
path: root/tools/py3tool.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-04-13 07:00:11 -0700
committerCharles Harris <charlesr.harris@gmail.com>2013-04-13 07:00:11 -0700
commit688bc60658b391524c6b641e0a5e5ecd73322d02 (patch)
tree1b210bb7361ce691e781884bf06f89c7ebd13360 /tools/py3tool.py
parent74b08b3f0284d9d2dd55a15dd98a3846913b1b51 (diff)
parent7f5af37e26ba2e99ad3ee6928b78437f601e96e0 (diff)
downloadnumpy-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-xtools/py3tool.py6
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',