summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/compat.py
diff options
context:
space:
mode:
authorAlan McIntyre <alan.mcintyre@local>2008-09-13 18:10:48 +0000
committerAlan McIntyre <alan.mcintyre@local>2008-09-13 18:10:48 +0000
commit83eba775c46704a969826eb1990be80e35c65255 (patch)
treeb7462dcedf8c6c99c713ad096334a081df776970 /numpy/oldnumeric/compat.py
parente8b5097f886ca58ff5713886f8378d2b233c418b (diff)
downloadnumpy-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.py2
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