diff options
author | Alan McIntyre <alan.mcintyre@local> | 2008-09-13 18:10:48 +0000 |
---|---|---|
committer | Alan McIntyre <alan.mcintyre@local> | 2008-09-13 18:10:48 +0000 |
commit | 83eba775c46704a969826eb1990be80e35c65255 (patch) | |
tree | b7462dcedf8c6c99c713ad096334a081df776970 /numpy/oldnumeric/compat.py | |
parent | e8b5097f886ca58ff5713886f8378d2b233c418b (diff) | |
download | numpy-83eba775c46704a969826eb1990be80e35c65255.tar.gz |
Rewrapped __all__ definition to conform to PEP8.
Standardize NumPy import as "import numpy as np".
Removed unused imports.
Fixed undefined reference to ndarray (should be np.ndarray).
Fixed undefined references to exp (should be math.exp).
Diffstat (limited to 'numpy/oldnumeric/compat.py')
-rw-r--r-- | numpy/oldnumeric/compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/oldnumeric/compat.py b/numpy/oldnumeric/compat.py index 7f123fa69..3e1d53d0e 100644 --- a/numpy/oldnumeric/compat.py +++ b/numpy/oldnumeric/compat.py @@ -12,7 +12,7 @@ __all__ = ['NewAxis', import numpy.core.multiarray as multiarray import numpy.core.umath as um -from numpy.core.numeric import array, correlate +from numpy.core.numeric import array import functions import sys |