summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/ma.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2008-04-03 20:44:22 +0000
committerTravis Oliphant <oliphant@enthought.com>2008-04-03 20:44:22 +0000
commitd396f126cc9ac2f215c1363a8f8650d6c4e6c161 (patch)
tree662a391cfeed935a646c0465bc5e0e48d0e7e5a5 /numpy/oldnumeric/ma.py
parent4f8d0c88ffb66e7ea064a4b1ef77112fbbedae0f (diff)
downloadnumpy-d396f126cc9ac2f215c1363a8f8650d6c4e6c161.tar.gz
Fix typo.
Diffstat (limited to 'numpy/oldnumeric/ma.py')
-rw-r--r--numpy/oldnumeric/ma.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/oldnumeric/ma.py b/numpy/oldnumeric/ma.py
index 0c259f090..1e8e831ba 100644
--- a/numpy/oldnumeric/ma.py
+++ b/numpy/oldnumeric/ma.py
@@ -2264,6 +2264,6 @@ def average(a, axis=0, weights=None, returned=0):
return new_average(a, axis, weights, returned)
def take(a, indices, axis=0):
- return new_take(a, indices, axis=0)
+ return new_take(a, indices, axis)