diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-02-21 03:09:11 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-02-21 03:09:11 +0000 |
commit | 0c7b0805b45c887733ff11a386267d5a4c6a7ecb (patch) | |
tree | 5f19344f0ff382676aa915418cd0910f4ea319c4 /numpy/lib/recfunctions.py | |
parent | 8d227b3f6d8e882676ce43a6651c20409b01bd96 (diff) | |
download | numpy-0c7b0805b45c887733ff11a386267d5a4c6a7ecb.tar.gz |
STY: Remove unneeded import.
Diffstat (limited to 'numpy/lib/recfunctions.py')
-rw-r--r-- | numpy/lib/recfunctions.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/lib/recfunctions.py b/numpy/lib/recfunctions.py index c64545146..a8fcc22d1 100644 --- a/numpy/lib/recfunctions.py +++ b/numpy/lib/recfunctions.py @@ -16,13 +16,8 @@ from itertools import repeat as iterrepeat from numpy import ndarray, recarray from numpy.ma import MaskedArray from numpy.ma.mrecords import MaskedRecords - from numpy.lib._iotools import _is_string_like -import sys -if sys.version_info[0] >= 3: - iterizip = zip - _check_fill_value = np.ma.core._check_fill_value __all__ = ['append_fields', |