From 65839d74bd0e9402763adb7976cbe86d7beeb0fb Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Fri, 15 Aug 2008 21:15:58 +0000 Subject: Re-factor code to remove dependency of numpy.core on numpy.lib by moving issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes --- numpy/core/defmatrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/core/defmatrix.py') 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 -- cgit v1.2.1