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 /numpy/lib/tests/test_packbits.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 'numpy/lib/tests/test_packbits.py')
-rw-r--r-- | numpy/lib/tests/test_packbits.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_packbits.py b/numpy/lib/tests/test_packbits.py index 186e8960d..0de084ef9 100644 --- a/numpy/lib/tests/test_packbits.py +++ b/numpy/lib/tests/test_packbits.py @@ -1,5 +1,6 @@ -import numpy as np +from __future__ import division, absolute_import, print_function +import numpy as np from numpy.testing import assert_array_equal, assert_equal, assert_raises |