summaryrefslogtreecommitdiff
path: root/numpy/matrixlib/defmatrix.py
diff options
context:
space:
mode:
authoralex <argriffi@ncsu.edu>2014-08-04 15:27:36 -0400
committeralex <argriffi@ncsu.edu>2014-08-04 15:27:36 -0400
commitd71637bb914a9b1140c8173024533cf3504ecad8 (patch)
treefca2b5f02b5ceed010ae045b50736cad0be4787c /numpy/matrixlib/defmatrix.py
parent489d23cd0f08de8890a65dcdb5caccdb8030c646 (diff)
downloadnumpy-d71637bb914a9b1140c8173024533cf3504ecad8.tar.gz
MAINT: use N.ndarray instead of core.multiarray.ndarray
Diffstat (limited to 'numpy/matrixlib/defmatrix.py')
-rw-r--r--numpy/matrixlib/defmatrix.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/matrixlib/defmatrix.py b/numpy/matrixlib/defmatrix.py
index 752bfdae5..efe83f38a 100644
--- a/numpy/matrixlib/defmatrix.py
+++ b/numpy/matrixlib/defmatrix.py
@@ -3,7 +3,6 @@ from __future__ import division, absolute_import, print_function
__all__ = ['matrix', 'bmat', 'mat', 'asmatrix']
import sys
-from numpy import core
import numpy.core.numeric as N
from numpy.core.numeric import concatenate, isscalar, binary_repr, identity, asanyarray
from numpy.core.numerictypes import issubdtype
@@ -963,7 +962,7 @@ class matrix(N.ndarray):
numpy.ravel : related function which returns an ndarray
"""
- return core.multiarray.ndarray.ravel(self, order=order)
+ return N.ndarray.ravel(self, order=order)
def getT(self):