diff options
author | Ismael Jimenez <ijimenezm@hotmail.es> | 2021-05-22 10:34:37 +0200 |
---|---|---|
committer | Ismael Jimenez <ijimenezm@hotmail.es> | 2021-05-22 10:34:37 +0200 |
commit | 641587086a4f5cd1413f72d27cea64f1bddc1772 (patch) | |
tree | b88efdbfd05ea1cff792c3bdbd70e108795cd004 /numpy/core/numeric.pyi | |
parent | 7de0fa959e476900725d8a654775e0a38745de08 (diff) | |
download | numpy-641587086a4f5cd1413f72d27cea64f1bddc1772.tar.gz |
fix gh-19056
Diffstat (limited to 'numpy/core/numeric.pyi')
-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: ... |