summaryrefslogtreecommitdiff
path: root/numpy/core/defmatrix.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2008-08-15 21:15:58 +0000
committerTravis Oliphant <oliphant@enthought.com>2008-08-15 21:15:58 +0000
commit65839d74bd0e9402763adb7976cbe86d7beeb0fb (patch)
tree1f91ec0601cb132d05f57c46974fea0ffdaf70f4 /numpy/core/defmatrix.py
parent73d91a6b903497a7ad38aab97f48e51f21a1e5df (diff)
downloadnumpy-65839d74bd0e9402763adb7976cbe86d7beeb0fb.tar.gz
Re-factor code to remove dependency of numpy.core on numpy.lib by moving issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes
Diffstat (limited to 'numpy/core/defmatrix.py')
-rw-r--r--numpy/core/defmatrix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defmatrix.py b/numpy/core/defmatrix.py
index 1707e49fd..97602918d 100644
--- a/numpy/core/defmatrix.py
+++ b/numpy/core/defmatrix.py
@@ -3,7 +3,7 @@ __all__ = ['matrix', 'bmat', 'mat', 'asmatrix']
import sys
import numeric as N
from numeric import concatenate, isscalar, binary_repr, identity
-from numpy.lib.utils import issubdtype
+from numerictypes import issubdtype
# make translation table
_table = [None]*256