summaryrefslogtreecommitdiff
path: root/numpy/tests/test_scripts.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/tests/test_scripts.py')
-rw-r--r--numpy/tests/test_scripts.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/tests/test_scripts.py b/numpy/tests/test_scripts.py
index e42dc25f9..a0f2ba70a 100644
--- a/numpy/tests/test_scripts.py
+++ b/numpy/tests/test_scripts.py
@@ -2,8 +2,6 @@
Test that we can run executable scripts that have been installed with numpy.
"""
-from __future__ import division, print_function, absolute_import
-
import sys
import os
import pytest
@@ -11,8 +9,7 @@ from os.path import join as pathjoin, isfile, dirname
import subprocess
import numpy as np
-from numpy.compat.py3k import basestring
-from numpy.testing import assert_, assert_equal
+from numpy.testing import assert_equal
is_inplace = isfile(pathjoin(dirname(np.__file__), '..', 'setup.py'))