summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2023-03-05 18:58:42 -0500
committerGitHub <noreply@github.com>2023-03-05 18:58:42 -0500
commit3ff3de185c14717554b8fa443beb48e17c12c1d5 (patch)
tree9d7586f3e1b65eae4209e0356bd031c8c36fdd84
parent7df6543a3c0afb70e2a6be13d718d01979ad571f (diff)
parent13bf253b2ed3a2a4c358d2bb2c728bc08cb46d87 (diff)
downloadnumpy-3ff3de185c14717554b8fa443beb48e17c12c1d5.tar.gz
Merge pull request #23341 from charris/backport-23325
TYP: Replace duplicate reduce in ufunc type signature with reduceat.
-rw-r--r--numpy/__init__.pyi2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/__init__.pyi b/numpy/__init__.pyi
index 8019976d0..d5e4d028f 100644
--- a/numpy/__init__.pyi
+++ b/numpy/__init__.pyi
@@ -3213,7 +3213,7 @@ class ufunc:
# can't type them very precisely.
reduce: Any
accumulate: Any
- reduce: Any
+ reduceat: Any
outer: Any
# Similarly at won't be defined for ufuncs that return multiple
# outputs, so we can't type it very precisely.