diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-12-07 14:59:33 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-12-07 14:59:33 -0700 |
commit | f1c5451e0521cf86e9485e16a2ea46864abc7b6a (patch) | |
tree | ac85784252d37d12d7b9b74727205f2ebe00b247 /runtests.py | |
parent | 9ce9b9a7244f4d583e9bc6bc798f642226e6c4b6 (diff) | |
parent | 4743f3b4454a736e2bbd8b6f116f7efaef13c406 (diff) | |
download | numpy-f1c5451e0521cf86e9485e16a2ea46864abc7b6a.tar.gz |
Merge pull request #6775 from charris/add-future-imports
MAINT: Include from __future__ boilerplate in some files missing it.
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 |