summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-04-10 18:25:55 -0600
committerCharles Harris <charlesr.harris@gmail.com>2013-04-10 18:25:55 -0600
commit16f97614acd12b85619f8a2a52114ecc955787a6 (patch)
tree8485f10218d88865e36e7fab9984d6a2ee18ffc3 /tools
parent25d55b8f0ea74f7c8a700a14ef8c256a51dd1376 (diff)
downloadnumpy-16f97614acd12b85619f8a2a52114ecc955787a6.tar.gz
2to3: Skip `future` fixer.
The `future` fixer removes the `from __future__ import ...` statements. That is fine for Python 3, but we need to keep that statement if we are shooting for a common code base for both Python 2 and Python 3.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/py3tool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/py3tool.py b/tools/py3tool.py
index c9543294d..dd39e4f91 100755
--- a/tools/py3tool.py
+++ b/tools/py3tool.py
@@ -55,7 +55,7 @@ FIXES_TO_SKIP = [
'exitfunc',
'filter',
# 'funcattrs',
-# 'future',
+ 'future',
'getcwdu',
'has_key',
# 'idioms',