From b2955ede452b8ca2aae5d0b035cd19c8a3b12480 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Wed, 30 Jul 2014 14:17:00 -0600 Subject: MAINT: Fix problems noted by pyflakes in numpy/lib/tests. --- numpy/lib/tests/test_arraysetops.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'numpy/lib/tests/test_arraysetops.py') diff --git a/numpy/lib/tests/test_arraysetops.py b/numpy/lib/tests/test_arraysetops.py index 271943abc..d2638e4b9 100644 --- a/numpy/lib/tests/test_arraysetops.py +++ b/numpy/lib/tests/test_arraysetops.py @@ -3,11 +3,13 @@ """ from __future__ import division, absolute_import, print_function -from numpy.testing import * import numpy as np -from numpy.lib.arraysetops import * - -import warnings +from numpy.testing import ( + run_module_suite, TestCase, assert_array_equal + ) +from numpy.lib.arraysetops import ( + ediff1d, intersect1d, setxor1d, union1d, setdiff1d, unique, in1d + ) class TestSetOps(TestCase): -- cgit v1.2.1