From 86f1c1d2891b8f54c0be3728aea490d2afe899bb Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Thu, 12 Jan 2023 20:33:32 +0000 Subject: [PATCH] docs: remove reference to sorting implementation --- src/awkward/operations/ak_argsort.py | 6 ++---- src/awkward/operations/ak_sort.py | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/awkward/operations/ak_argsort.py b/src/awkward/operations/ak_argsort.py index 3f8b193e53..2cb6382ca6 100644 --- a/src/awkward/operations/ak_argsort.py +++ b/src/awkward/operations/ak_argsort.py @@ -19,10 +19,8 @@ def argsort( ascending (bool): If True, the first value in each sorted group will be smallest, the last value largest; if False, the order is from largest to smallest. - stable (bool): If True, use a stable sorting algorithm (introsort: - a hybrid of quicksort, heapsort, and insertion sort); if False, - use a sorting algorithm that is not guaranteed to be stable - (heapsort). + stable (bool): If True, use a stable sorting algorithm; if False, + use a sorting algorithm that is not guaranteed to be stable. highlevel (bool): If True, return an #ak.Array; otherwise, return a low-level #ak.contents.Content subclass. behavior (None or dict): Custom #ak.behavior for the output array, if diff --git a/src/awkward/operations/ak_sort.py b/src/awkward/operations/ak_sort.py index af9d5bd070..3d4afde748 100644 --- a/src/awkward/operations/ak_sort.py +++ b/src/awkward/operations/ak_sort.py @@ -17,10 +17,8 @@ def sort(array, axis=-1, *, ascending=True, stable=True, highlevel=True, behavio ascending (bool): If True, the first value in each sorted group will be smallest, the last value largest; if False, the order is from largest to smallest. - stable (bool): If True, use a stable sorting algorithm (introsort: - a hybrid of quicksort, heapsort, and insertion sort); if False, - use a sorting algorithm that is not guaranteed to be stable - (heapsort). + stable (bool): If True, use a stable sorting algorithm; if False, + use a sorting algorithm that is not guaranteed to be stable. highlevel (bool): If True, return an #ak.Array; otherwise, return a low-level #ak.contents.Content subclass. behavior (None or dict): Custom #ak.behavior for the output array, if