diff options
author | Jarrod Millman <millman@berkeley.edu> | 2007-12-29 01:35:09 +0000 |
---|---|---|
committer | Jarrod Millman <millman@berkeley.edu> | 2007-12-29 01:35:09 +0000 |
commit | b35941f6fc2e9b2282de21b167891007605241b6 (patch) | |
tree | 3abeafabbb43665e9cb286df7a8e0538d17b5168 /numpy/numarray/functions.py | |
parent | e7191fc96a676b5ea444f23501a3db61c2be602e (diff) | |
download | numpy-b35941f6fc2e9b2282de21b167891007605241b6.tar.gz |
typo
Diffstat (limited to 'numpy/numarray/functions.py')
-rw-r--r-- | numpy/numarray/functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/numarray/functions.py b/numpy/numarray/functions.py index 3f55e1a9c..dca25c93c 100644 --- a/numpy/numarray/functions.py +++ b/numpy/numarray/functions.py @@ -492,4 +492,4 @@ def togglebyteorder(self): self.dtype=self.dtype.newbyteorder() def average(a, axis=0, weights=None, returned=0): - return = np.average(a, axis, weights, returned) + return np.average(a, axis, weights, returned) |