summaryrefslogtreecommitdiff
path: root/tools/py3tool.py
diff options
context:
space:
mode:
authornjsmith <njs@pobox.com>2013-03-05 12:20:10 -0800
committernjsmith <njs@pobox.com>2013-03-05 12:20:10 -0800
commit9311fb7e861e2c8eb686abded01c059b49f0b5e4 (patch)
tree042f0111af21c91c8160037d4b5ceba01baacd53 /tools/py3tool.py
parent3ba223e867dd6a2bda130d0630ee9aad3c32ae97 (diff)
parentbaeaeac6885d67238321101863a7753d366c535e (diff)
downloadnumpy-9311fb7e861e2c8eb686abded01c059b49f0b5e4.tar.gz
Merge pull request #3120 from charris/2to3-remove-raw_input
2to3:DEP: Remove interactive setup and gnu compiler configuration.
Diffstat (limited to 'tools/py3tool.py')
-rwxr-xr-xtools/py3tool.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/py3tool.py b/tools/py3tool.py
index 76ca2f026..be7a6cce8 100755
--- a/tools/py3tool.py
+++ b/tools/py3tool.py
@@ -76,7 +76,9 @@ FIXES_TO_SKIP = [
'execfile',
'exec',
'callable',
- 'apply'
+ 'apply',
+ 'input',
+ 'raw_input'
]
skip_fixes= []