From 4593515985f1aa30cf07715ace5eeee6da848c97 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Tue, 17 Jan 2006 00:07:21 +0000 Subject: Fixed up usage of dtype to be consistent with new dtype objects. --- numpy/lib/utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'numpy/lib/utils.py') diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index a776c83b6..e9ff9e540 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -1,6 +1,6 @@ -from numpy.core.numerictypes import obj2dtype +from numpy.core.numerictypes import obj2arrtype -__all__ = ['issubclass_', 'get_numpy_include', 'issubdtype'] +__all__ = ['issubclass_', 'get_numpy_include', 'issubarrtype'] def issubclass_(arg1, arg2): try: @@ -8,8 +8,8 @@ def issubclass_(arg1, arg2): except TypeError: return False -def issubdtype(arg1, arg2): - return issubclass(obj2dtype(arg1), obj2dtype(arg2)) +def issubarrtype(arg1, arg2): + return issubclass(obj2arrtype(arg1), obj2arrtype(arg2)) def get_numpy_include(): """Return the directory in the package that contains the numpy/*.h header -- cgit v1.2.1