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 /runtests.py | |
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 'runtests.py')
-rwxr-xr-x | runtests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtests.py b/runtests.py index 9376ae55f..957cbef10 100755 --- a/runtests.py +++ b/runtests.py @@ -24,6 +24,7 @@ Generate C code coverage listing under build/lcov/: $ python runtests.py --lcov-html """ +from __future__ import division, print_function # # This is a generic test runner script for projects using Numpy's test |