From e95fcba32f123dc3ea6e23f533fedf5aee64815e Mon Sep 17 00:00:00 2001 From: Warren Weckesser Date: Mon, 4 May 2020 19:04:20 -0400 Subject: DEP: Deprecate `numpy.dual`. Add a deprecation warning in the `numpy.dual` module, and remove the use of `numpy.dual` from the few places where it is used in the numpy code. --- numpy/lib/function_base.py | 1 - 1 file changed, 1 deletion(-) (limited to 'numpy/lib/function_base.py') diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 7eeed7825..74ae3ed6e 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -3224,7 +3224,6 @@ def kaiser(M, beta): >>> plt.show() """ - from numpy.dual import i0 if M == 1: return np.array([1.]) n = arange(0, M) -- cgit v1.2.1