summaryrefslogtreecommitdiff
path: root/numpy/numarray/compat.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-10 11:55:33 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-10 11:55:33 +0000
commitb772c977e5d4d71c78919ef941858ad438ee4986 (patch)
tree2fbce2c189b29ec2f1deb33e820e70ba3ad56ff8 /numpy/numarray/compat.py
parent4b1569e2208baf36a5ebd0de0877946bd86b2a38 (diff)
downloadnumpy-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.py6
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