diff --git a/arkouda/numpy/__init__.py b/arkouda/numpy/__init__.py index ddc71e5af3..e55f00c0e3 100644 --- a/arkouda/numpy/__init__.py +++ b/arkouda/numpy/__init__.py @@ -15,9 +15,12 @@ double, e, euler_gamma, + finfo, float32, float64, + floating, half, + iinfo, inf, infty, int8, @@ -26,12 +29,18 @@ int64, int_, intc, + integer, + intp, + isscalar, + issubdtype, longdouble, longlong, nan, newaxis, + number, pi, short, + signedinteger, single, ubyte, uint, @@ -43,8 +52,8 @@ ulonglong, ushort, ) -from ._numeric import floor +from ._numeric import floor __all__ = [ "NAN", @@ -56,6 +65,7 @@ "Infinity", "NaN", "bool_", + "number", "byte", "cdouble", "clongdouble", @@ -63,9 +73,13 @@ "double", "e", "euler_gamma", + "finfo", "float32", "float64", + "floating", + "floor", "half", + "iinfo", "inf", "infty", "int8", @@ -74,12 +88,18 @@ "int64", "int_", "intc", + "integer", + "intp", + "isscalar", + "issubdtype", + "integer", "longdouble", "longlong", "nan", "newaxis", "pi", "short", + "signedinteger", "single", "ubyte", "uint", @@ -90,5 +110,4 @@ "uintc", "ulonglong", "ushort", - "floor", ]