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/build.py | |
parent | 25ec6853e17e96448ce7d8f18eda2ef5290c2acf (diff) | |
download | numpy-670b12649e34164514fc4981d8fbacfadf1f389e.tar.gz |
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/build.py')
-rw-r--r-- | tools/win32build/build.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/win32build/build.py b/tools/win32build/build.py index 4acb2e879..43d8a395d 100644 --- a/tools/win32build/build.py +++ b/tools/win32build/build.py @@ -1,11 +1,15 @@ """Python script to build windows binaries to be fed to the "superpack". The script is pretty dumb: it assumes python executables are installed the -standard way, and the location for blas/lapack/atlas is harcoded.""" +standard way, and the location for blas/lapack/atlas is harcoded. + +TODO: + - integrate the x86analysis script to check built binaries + - make the config configurable with a file + +""" +from __future__ import division -# TODO: -# - integrate the x86analysis script to check built binaries -# - make the config configurable with a file import sys import subprocess import os |