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/ast_tools.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/ast_tools.py')
-rw-r--r-- | weave/ast_tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weave/ast_tools.py b/weave/ast_tools.py index 48b87cd90..4d69bb7a5 100644 --- a/weave/ast_tools.py +++ b/weave/ast_tools.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. |