summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.pyi
diff options
context:
space:
mode:
authorIsmael Jimenez <ijimenezm@hotmail.es>2021-05-22 10:34:37 +0200
committerIsmael Jimenez <ijimenezm@hotmail.es>2021-05-22 10:34:37 +0200
commit641587086a4f5cd1413f72d27cea64f1bddc1772 (patch)
treeb88efdbfd05ea1cff792c3bdbd70e108795cd004 /numpy/core/numeric.pyi
parent7de0fa959e476900725d8a654775e0a38745de08 (diff)
downloadnumpy-641587086a4f5cd1413f72d27cea64f1bddc1772.tar.gz
fix gh-19056
Diffstat (limited to 'numpy/core/numeric.pyi')
-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: ...