From 5f9cd964581950d671d2e17a724cdd6984dcd29d Mon Sep 17 00:00:00 2001 From: Jonas Liechti Date: Fri, 22 Oct 2021 17:41:32 +0200 Subject: removed redundant comment --- numpy/lib/function_base.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'numpy/lib/function_base.py') diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 2e77c11dc..392a059b5 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -663,9 +663,6 @@ def select(condlist, choicelist, default=0): >>> np.select(condlist, choicelist, 42) array([ 0, 1, 2, 42, 16, 25]) - Note that, when multiple conditions are satisfied, the element is drawn - from the first array in `choicelist` with a matching condition: - >>> x = np.arange(6) >>> condlist = [x<=4, x>3] >>> choicelist = [x, x**2] -- cgit v1.2.1