summaryrefslogtreecommitdiff
path: root/numpy/core/fromnumeric.py
diff options
context:
space:
mode:
authorJohn Belmonte <john@neggie.net>2019-05-16 11:37:53 +0900
committerGitHub <noreply@github.com>2019-05-16 11:37:53 +0900
commit0ca5969ae7dcd1770f117d8c8782b7c4ec4e5ca4 (patch)
tree554ed42d90b753db42060c6f9310937438020091 /numpy/core/fromnumeric.py
parent75ea05fc0af60c685e6c071dae1f04c489a3ce93 (diff)
downloadnumpy-0ca5969ae7dcd1770f117d8c8782b7c4ec4e5ca4.tar.gz
searchsorted: remove performance claim
Fixes #13566
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r--numpy/core/fromnumeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py
index 58da8a54b..a5d27a008 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -1279,7 +1279,7 @@ def searchsorted(a, v, side='left', sorter=None):
As of NumPy 1.4.0 `searchsorted` works with real/complex arrays containing
`nan` values. The enhanced sort order is documented in `sort`.
- This function is a faster version of the builtin python `bisect.bisect_left`
+ This function is a version of the builtin python `bisect.bisect_left`
(``side='left'``) and `bisect.bisect_right` (``side='right'``) functions,
which is also vectorized in the `v` argument.