diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-24 08:36:48 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-24 08:36:48 +0000 |
commit | ca059fbcebb498f68ccf5eecd692b4c90a6b4bb7 (patch) | |
tree | f63a853fab72bb5f9146a55a1c71951c5fb74eac /numpy/core/ma.py | |
parent | 9ab77ec1e9fdd2ebe5dfe2eccd7ad129189ea076 (diff) | |
download | numpy-ca059fbcebb498f68ccf5eecd692b4c90a6b4bb7.tar.gz |
Add rudimentary interrupt handliNG. Add max, min, round, abs to the numpy space.
Diffstat (limited to 'numpy/core/ma.py')
-rw-r--r-- | numpy/core/ma.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/core/ma.py b/numpy/core/ma.py index 495764ae8..2e2d3f8ec 100644 --- a/numpy/core/ma.py +++ b/numpy/core/ma.py @@ -2144,7 +2144,6 @@ def _m(f): return MethodType(f, None, array) def not_implemented(*args, **kwds): raise NotImplementedError, "not yet implemented for numpy.ma arrays" -array.abs = array.__abs__ array.all = _m(alltrue) array.any = _m(sometrue) array.argmax = _m(argmax) |