diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-12-05 19:16:00 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-12-05 19:16:00 -0700 |
commit | 4743f3b4454a736e2bbd8b6f116f7efaef13c406 (patch) | |
tree | 5be17121c484f7f3707055bdd7ae087ba07f1d95 /tools | |
parent | 0ba39a97ce6f38b714b8109bd32573a9eacd4c17 (diff) | |
download | numpy-4743f3b4454a736e2bbd8b6f116f7efaef13c406.tar.gz |
MAINT: Include from __future__ boilerplate in some files missing it.
Some newer *.py files are missing the `from __future__` boilerplate
that helps assure Python2 and Python3 compatibility.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/win32build/build-cpucaps.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/win32build/build-cpucaps.py b/tools/win32build/build-cpucaps.py index d6a9dabc2..0c0a32dc5 100644 --- a/tools/win32build/build-cpucaps.py +++ b/tools/win32build/build-cpucaps.py @@ -1,3 +1,5 @@ +from __future__ import division, print_function + import os import subprocess # build cpucaps.dll |