summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_packbits.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 /numpy/lib/tests/test_packbits.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 'numpy/lib/tests/test_packbits.py')
-rw-r--r--numpy/lib/tests/test_packbits.py3
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