summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-10-05 05:49:08 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-10-05 05:49:08 +0000
commitc76a2c4097fda804b05a713370ce077215e2ee7a (patch)
tree2c26998cf02674723a86270c6de8d760f955322c /numpy/lib/function_base.py
parentc620acddd34a07edd6f33baad0adfad6e8cf1bd5 (diff)
downloadnumpy-c76a2c4097fda804b05a713370ce077215e2ee7a.tar.gz
Fix up __array_interface__ getting and depth discovery for scalars.
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py3
1 files changed, 1 insertions, 2 deletions
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)