diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-04-10 18:25:55 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-04-10 18:25:55 -0600 |
commit | 16f97614acd12b85619f8a2a52114ecc955787a6 (patch) | |
tree | 8485f10218d88865e36e7fab9984d6a2ee18ffc3 /tools | |
parent | 25d55b8f0ea74f7c8a700a14ef8c256a51dd1376 (diff) | |
download | numpy-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-x | tools/py3tool.py | 2 |
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', |