From 741e5c77f9a9df06716a685b91668c01ef95ebcd Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Wed, 19 Mar 2014 16:16:04 +0100 Subject: FIX: missing asarray import in numpy.libs.utils --- numpy/lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/utils.py') diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 791f271b1..6d41e8eb4 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -6,7 +6,7 @@ import types import re from numpy.core.numerictypes import issubclass_, issubsctype, issubdtype -from numpy.core import product, ndarray, ufunc +from numpy.core import product, ndarray, ufunc, asarray __all__ = [ 'issubclass_', 'issubsctype', 'issubdtype', 'deprecate', -- cgit v1.2.1