Skip to content

Commit

Permalink
Merge pull request scipy#3378 from WarrenWeckesser/remove-import-star
Browse files Browse the repository at this point in the history
MAINT: fftpack: Remove the use of 'import *' in a couple test files.
  • Loading branch information
rgommers committed Feb 23, 2014
2 parents 1b34692 + 15ca11e commit 1bc9ae6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion scipy/fftpack/tests/test_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
python tests/test_helper.py [<level>]
"""

from numpy.testing import *
from numpy.testing import (TestCase, assert_array_almost_equal, rand,
run_module_suite)
from scipy.fftpack import fftshift,ifftshift,fftfreq,rfftfreq

from numpy import pi
Expand Down
3 changes: 2 additions & 1 deletion scipy/fftpack/tests/test_pseudo_diffs.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
python tests/test_pseudo_diffs.py [<level>]
"""

from numpy.testing import *
from numpy.testing import (TestCase, assert_equal, assert_almost_equal,
assert_array_almost_equal, rand, run_module_suite)
from scipy.fftpack import diff, fft, ifft, tilbert, itilbert, hilbert, \
ihilbert, shift, fftfreq, cs_diff, sc_diff, \
ss_diff, cc_diff
Expand Down

0 comments on commit 1bc9ae6

Please sign in to comment.