diff options
author | Travis Oliphant <oliphant@enthought.com> | 2002-04-03 20:25:53 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2002-04-03 20:25:53 +0000 |
commit | db8bb3424741a0486653e63d8cee49212c1cc65c (patch) | |
tree | 6725121d7b4ebfb1774c68e1ff91d75c43830200 /weave/misc.py | |
parent | 694e465f0c311bf87ec5ca565fe67622a0d4496b (diff) | |
download | numpy-db8bb3424741a0486653e63d8cee49212c1cc65c.tar.gz |
Moved isnan and friends from cephes to special. Made comparison functions return UBYTES. Added Complex comparison functions which work on real parts.
Diffstat (limited to 'weave/misc.py')
-rwxr-xr-x | weave/misc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weave/misc.py b/weave/misc.py index bd621b9de..b83ea4d8b 100755 --- a/weave/misc.py +++ b/weave/misc.py @@ -146,7 +146,7 @@ def harvest_variables(ast_list): return variables def match(pattern, data, vars=None): - """Match `data' to `pattern', with variable extraction. + """match `data' to `pattern', with variable extraction. pattern Pattern to match against, possibly containing variables. |