diff options
author | Tim Leslie <tim.leslie@gmail.com> | 2007-01-09 04:45:31 +0000 |
---|---|---|
committer | Tim Leslie <tim.leslie@gmail.com> | 2007-01-09 04:45:31 +0000 |
commit | e56a09af9e696129b92e7487bccbc3713568fc5b (patch) | |
tree | 1257c10ae62f2847ac22f48e502eafeef7632820 /numpy/lib/utils.py | |
parent | 4d9b87ec11dc268bb9069831deab466ffe47ad93 (diff) | |
download | numpy-e56a09af9e696129b92e7487bccbc3713568fc5b.tar.gz |
clean up unused imports and bad whitespace
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index e50679eaa..d16dd8a78 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -1,8 +1,8 @@ -import sys, os +import sys import inspect import types -from numpy.core.numerictypes import obj2sctype, integer, generic -from numpy.core.multiarray import dtype as _dtype, _flagdict, flagsobj +from numpy.core.numerictypes import obj2sctype, generic +from numpy.core.multiarray import dtype as _dtype from numpy.core import product, ndarray __all__ = ['issubclass_', 'get_numpy_include', 'issubsctype', |