summaryrefslogtreecommitdiff
path: root/runtests.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-12-05 19:16:00 -0700
committerCharles Harris <charlesr.harris@gmail.com>2015-12-05 19:16:00 -0700
commit4743f3b4454a736e2bbd8b6f116f7efaef13c406 (patch)
tree5be17121c484f7f3707055bdd7ae087ba07f1d95 /runtests.py
parent0ba39a97ce6f38b714b8109bd32573a9eacd4c17 (diff)
downloadnumpy-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-xruntests.py1
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