diff options
Diffstat (limited to 'numpy/lib/tests/test__iotools.py')
-rw-r--r-- | numpy/lib/tests/test__iotools.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/lib/tests/test__iotools.py b/numpy/lib/tests/test__iotools.py index d564121d1..e19cf488f 100644 --- a/numpy/lib/tests/test__iotools.py +++ b/numpy/lib/tests/test__iotools.py @@ -5,12 +5,14 @@ import time from datetime import date import numpy as np +from numpy.compat import asbytes, asbytes_nested +from numpy.testing import ( + run_module_suite, TestCase, assert_, assert_equal + ) from numpy.lib._iotools import ( LineSplitter, NameValidator, StringConverter, has_nested_fields, easy_dtype, flatten_dtype ) -from numpy.testing import * -from numpy.compat import asbytes, asbytes_nested class TestLineSplitter(TestCase): |