diff options
Diffstat (limited to 'numpy/matrixlib/defmatrix.py')
-rw-r--r-- | numpy/matrixlib/defmatrix.py | 3 |
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): |