From c76a2c4097fda804b05a713370ce077215e2ee7a Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Thu, 5 Oct 2006 05:49:08 +0000 Subject: Fix up __array_interface__ getting and depth discovery for scalars. --- numpy/lib/function_base.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'numpy/lib/function_base.py') diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 4478a332f..3a8b5ffd7 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1023,8 +1023,7 @@ def i0(x): def kaiser(M,beta): """kaiser(M, beta) returns a Kaiser window of length M with shape parameter - beta. It depends on numpy.special (in full numpy) for the modified bessel - function i0. + beta. """ from numpy.dual import i0 n = arange(0,M) -- cgit v1.2.1