diff options
Diffstat (limited to 'numpy/core/defmatrix.py')
-rw-r--r-- | numpy/core/defmatrix.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/core/defmatrix.py b/numpy/core/defmatrix.py index 7942e6a93..66057be17 100644 --- a/numpy/core/defmatrix.py +++ b/numpy/core/defmatrix.py @@ -1,5 +1,5 @@ -__all__ = ['matrix', 'bmat', 'mat', 'asmatrix', 'asmat'] +__all__ = ['matrix', 'bmat', 'mat', 'asmatrix'] import numeric as N from numeric import concatenate, isscalar, binary_repr @@ -362,5 +362,4 @@ def bmat(obj, ldict=None, gdict=None): if isinstance(obj, N.ndarray): return matrix(obj) -mat = matrix -asmat = asmatrix +mat = asmatrix |