summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorBas van Beek <bas.vanbeek@hotmail.com>2023-05-08 16:07:36 +0200
committerBas van Beek <bas.vanbeek@hotmail.com>2023-05-08 16:10:08 +0200
commitf0bd36b16e35b0d7fc5765e2373e1ff3efa2f57e (patch)
treef43ad9da88c2fd287b78f57a4c5dbd1311a1a24c /numpy
parentba4e0688ee265c782f4e1cffe06968b6e9cec5cf (diff)
downloadnumpy-f0bd36b16e35b0d7fc5765e2373e1ff3efa2f57e.tar.gz
TYP: deprecate `product`, `cumproduct`, `sometrue`, `alltrue`
xref https://github.com/numpy/numpy/pull/23314
Diffstat (limited to 'numpy')
-rw-r--r--numpy/__init__.pyi6
1 files changed, 0 insertions, 6 deletions
diff --git a/numpy/__init__.pyi b/numpy/__init__.pyi
index 0cc768e22..935a58961 100644
--- a/numpy/__init__.pyi
+++ b/numpy/__init__.pyi
@@ -674,12 +674,6 @@ test: PytestTester
#
# Placeholders for classes
-# Some of these are aliases; others are wrappers with an identical signature
-product = prod
-cumproduct = cumprod
-sometrue = any
-alltrue = all
-
def show_config() -> None: ...
_NdArraySubClass = TypeVar("_NdArraySubClass", bound=ndarray[Any, Any])