diff options
author | BvB93 <43369155+BvB93@users.noreply.github.com> | 2022-11-14 17:47:04 +0100 |
---|---|---|
committer | BvB93 <43369155+BvB93@users.noreply.github.com> | 2022-11-14 17:47:04 +0100 |
commit | b780d8b537842a892c62aa36228cd72b26994773 (patch) | |
tree | dfed61c241e9ca83bd6b5639d3cab5c89dc65525 /numpy/lib | |
parent | 6df49a353e01fd0382947bdf994c010342ab2c34 (diff) | |
download | numpy-b780d8b537842a892c62aa36228cd72b26994773.tar.gz |
TYP,DEP: Remove `msort` annotations
Xref https://github.com/numpy/numpy/pull/22456
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/function_base.pyi | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/numpy/lib/function_base.pyi b/numpy/lib/function_base.pyi index c14a54c60..687e4ab17 100644 --- a/numpy/lib/function_base.pyi +++ b/numpy/lib/function_base.pyi @@ -441,12 +441,8 @@ def sinc(x: _ArrayLikeFloat_co) -> NDArray[floating[Any]]: ... @overload def sinc(x: _ArrayLikeComplex_co) -> NDArray[complexfloating[Any, Any]]: ... -@overload -def msort(a: _ArrayType) -> _ArrayType: ... -@overload -def msort(a: _ArrayLike[_SCT]) -> NDArray[_SCT]: ... -@overload -def msort(a: ArrayLike) -> NDArray[Any]: ... +# NOTE: Deprecated +# def msort(a: ArrayLike) -> NDArray[Any]: ... @overload def median( |