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/oldnumeric/compat.py | |
parent | 4d9b87ec11dc268bb9069831deab466ffe47ad93 (diff) | |
download | numpy-e56a09af9e696129b92e7487bccbc3713568fc5b.tar.gz |
clean up unused imports and bad whitespace
Diffstat (limited to 'numpy/oldnumeric/compat.py')
-rw-r--r-- | numpy/oldnumeric/compat.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/oldnumeric/compat.py b/numpy/oldnumeric/compat.py index 1d376dd12..369fa5000 100644 --- a/numpy/oldnumeric/compat.py +++ b/numpy/oldnumeric/compat.py @@ -11,13 +11,10 @@ __all__ = ['NewAxis', import numpy.core.multiarray as multiarray import numpy.core.umath as um -from numpy.core.numeric import array, correlate, outer, cross -from numpy.core.umath import sign, absolute, multiply +from numpy.core.numeric import array, correlate import functions import sys -import types - from cPickle import dump, dumps mu = multiarray |