diff options
author | Mark Harfouche <mark.harfouche@gmail.com> | 2023-01-16 02:37:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-15 23:37:55 -0800 |
commit | 4e710c5be093eb4367b4a08d9068f99f9070870d (patch) | |
tree | 7f5b28a0263fc4a2d3ea15d7f09d31e4afb85ba9 /numpy/testing/_private/utils.py | |
parent | 3c3a6b5157d4d36172f59cda2fc9e2badf5dfbe5 (diff) | |
download | numpy-4e710c5be093eb4367b4a08d9068f99f9070870d.tar.gz |
DOC: Add version added information for the strict parameter in assert_array_equal (#23015)
Diffstat (limited to 'numpy/testing/_private/utils.py')
-rw-r--r-- | numpy/testing/_private/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py index 45400856b..2a2126503 100644 --- a/numpy/testing/_private/utils.py +++ b/numpy/testing/_private/utils.py @@ -899,6 +899,8 @@ def assert_array_equal(x, y, err_msg='', verbose=True, *, strict=False): type of the array_like objects does not match. The special handling for scalars mentioned in the Notes section is disabled. + .. versionadded:: 1.24.0 + Raises ------ AssertionError |