diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-05-22 08:13:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 08:13:46 -0600 |
commit | ef6595517f451edc5c5710f048d1eaf6c82f4022 (patch) | |
tree | b88efdbfd05ea1cff792c3bdbd70e108795cd004 | |
parent | 7de0fa959e476900725d8a654775e0a38745de08 (diff) | |
parent | 641587086a4f5cd1413f72d27cea64f1bddc1772 (diff) | |
download | numpy-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.pyi | 2 |
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: ... |