summaryrefslogtreecommitdiff
path: root/numpy/fft
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-29 17:56:21 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-29 17:56:21 +0000
commit63326185c04be2795a7a33028d427e9c8c31c900 (patch)
tree62fb5b9f5f7b6e518346fa0893e408fa24755021 /numpy/fft
parent064c8eb43637e920f6019215b00ef1593d74b0c1 (diff)
downloadnumpy-63326185c04be2795a7a33028d427e9c8c31c900.tar.gz
Clean-up some un-needed default axes. Fix default axes of ma.sum and ma.product
Diffstat (limited to 'numpy/fft')
-rw-r--r--numpy/fft/fftpack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/fft/fftpack.py b/numpy/fft/fftpack.py
index ffa6ac18d..1cb24f2b7 100644
--- a/numpy/fft/fftpack.py
+++ b/numpy/fft/fftpack.py
@@ -200,7 +200,7 @@ def _cook_nd_args(a, s=None, axes=None, invreal=0):
if axes == None:
s = list(a.shape)
else:
- s = take(a.shape, axes,axis=0)
+ s = take(a.shape, axes)
else:
shapeless = 0
s = list(s)