summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-05-22 08:13:46 -0600
committerGitHub <noreply@github.com>2021-05-22 08:13:46 -0600
commitef6595517f451edc5c5710f048d1eaf6c82f4022 (patch)
treeb88efdbfd05ea1cff792c3bdbd70e108795cd004
parent7de0fa959e476900725d8a654775e0a38745de08 (diff)
parent641587086a4f5cd1413f72d27cea64f1bddc1772 (diff)
downloadnumpy-ef6595517f451edc5c5710f048d1eaf6c82f4022.tar.gz
Merge pull request #19063 from ismaelJimenez/fix-gh-19056
ENH: Stubs for array_equal appear out of date.
-rw-r--r--numpy/core/numeric.pyi2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.pyi b/numpy/core/numeric.pyi
index 6b9ef4b20..f57951434 100644
--- a/numpy/core/numeric.pyi
+++ b/numpy/core/numeric.pyi
@@ -238,6 +238,6 @@ def isclose(
equal_nan: bool = ...,
) -> Any: ...
-def array_equal(a1: ArrayLike, a2: ArrayLike) -> bool: ...
+def array_equal(a1: ArrayLike, a2: ArrayLike, equal_nan: bool = ...) -> bool: ...
def array_equiv(a1: ArrayLike, a2: ArrayLike) -> bool: ...