diff options
author | Alan McIntyre <alan.mcintyre@local> | 2008-09-18 03:33:58 +0000 |
---|---|---|
committer | Alan McIntyre <alan.mcintyre@local> | 2008-09-18 03:33:58 +0000 |
commit | 3c6341f1c5f932018875fa461ae51310cb419e14 (patch) | |
tree | de592a457bbedde578164b908683bb3c5139a78b /numpy/lib/utils.py | |
parent | 5db4b8807b0293ba5627189be66e14e7a8e07749 (diff) | |
download | numpy-3c6341f1c5f932018875fa461ae51310cb419e14.tar.gz |
Removed unused imports.
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 684876591..1c88fb3f1 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -4,9 +4,7 @@ import pkgutil import types import re -from numpy.core.numerictypes import obj2sctype, generic, issubclass_, \ - issubsctype, issubdtype -from numpy.core.multiarray import dtype as _dtype +from numpy.core.numerictypes import issubclass_, issubsctype, issubdtype from numpy.core import product, ndarray __all__ = ['issubclass_', 'get_numpy_include', 'issubsctype', |