diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-10-02 19:07:04 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-10-02 19:07:04 +0000 |
commit | e00e0b30ac0319a2eb69e71e113c259302db3a0d (patch) | |
tree | 65556971d9e06a95fec2c8aa09e27aa6a6e24172 /scipy/base/code_generators/generate_umath.py | |
parent | 7bada31773353df212b4bcfddeade00b10f2a635 (diff) | |
download | numpy-e00e0b30ac0319a2eb69e71e113c259302db3a0d.tar.gz |
Fixed bug in umath absolute.
Diffstat (limited to 'scipy/base/code_generators/generate_umath.py')
-rw-r--r-- | scipy/base/code_generators/generate_umath.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scipy/base/code_generators/generate_umath.py b/scipy/base/code_generators/generate_umath.py index 17a14b481..3d4546be2 100644 --- a/scipy/base/code_generators/generate_umath.py +++ b/scipy/base/code_generators/generate_umath.py @@ -87,7 +87,8 @@ defdict = { 'absolute' : [all,'O', ("PyNumber_Absolute",), (1,1), None, - "takes |x| elementwise." + "takes |x| elementwise.", + nocmplx+fltsO ], 'negative' : [all,cmplxO, ("neg,"*3,"PyNumber_Negative"), |