diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-03-28 10:03:43 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-03-28 10:03:43 -0600 |
commit | 670b12649e34164514fc4981d8fbacfadf1f389e (patch) | |
tree | 25a21446ff6bdab5d95584aa6663c4f790797bb4 /tools/win32build/doall.py | |
parent | 25ec6853e17e96448ce7d8f18eda2ef5290c2acf (diff) | |
download | python-numpy-670b12649e34164514fc4981d8fbacfadf1f389e.tar.gz python-numpy-670b12649e34164514fc4981d8fbacfadf1f389e.tar.bz2 python-numpy-670b12649e34164514fc4981d8fbacfadf1f389e.zip |
2to3: Add `from __future__ import ...` to some files that were missed.
With the exception of numpy/distutils/tests/test_exec_command.py, all
of these files are script files in tools/osxbuild and tools/win32build.
The import in the script files omits `absolute_import` as they are
not part of a package.
Diffstat (limited to 'tools/win32build/doall.py')
-rw-r--r-- | tools/win32build/doall.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/win32build/doall.py b/tools/win32build/doall.py index eb07394ea..e9866122e 100644 --- a/tools/win32build/doall.py +++ b/tools/win32build/doall.py @@ -1,3 +1,5 @@ +from __future__ import division + import subprocess import os |