diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-10 11:55:33 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-10 11:55:33 +0000 |
commit | b772c977e5d4d71c78919ef941858ad438ee4986 (patch) | |
tree | 2fbce2c189b29ec2f1deb33e820e70ba3ad56ff8 /numpy/numarray/compat.py | |
parent | 4b1569e2208baf36a5ebd0de0877946bd86b2a38 (diff) | |
download | numpy-b772c977e5d4d71c78919ef941858ad438ee4986.tar.gz |
Update C-API to add features needed for numarray compatibility. Output argument added for several functions and clipmode argument added for a few others.
Diffstat (limited to 'numpy/numarray/compat.py')
-rw-r--r-- | numpy/numarray/compat.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/numpy/numarray/compat.py b/numpy/numarray/compat.py index c9fd3ef86..e0d13a7c2 100644 --- a/numpy/numarray/compat.py +++ b/numpy/numarray/compat.py @@ -1,6 +1,4 @@ -__all__ = ['NewAxis'] +__all__ = ['NewAxis', 'ArrayType'] -from numpy import newaxis - -NewAxis = newaxis +from numpy import newaxis as NewAxis, ndarray as ArrayType |