diff options
author | yuki <drsuaimqjgar@gmail.com> | 2023-02-24 06:47:48 +0000 |
---|---|---|
committer | yuki <drsuaimqjgar@gmail.com> | 2023-02-24 07:08:28 +0000 |
commit | 56ec7cc20f2a1b782d258cb080a7d35087a5bd7b (patch) | |
tree | 85232564e2f09ec5db92acf055d03d32d6fc03a2 /numpy/testing | |
parent | d92cc2d1c7c7153525e03c4d10377714d85cfde6 (diff) | |
download | numpy-56ec7cc20f2a1b782d258cb080a7d35087a5bd7b.tar.gz |
DOC: Fix wrong section title
Diffstat (limited to 'numpy/testing')
-rw-r--r-- | numpy/testing/overrides.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/testing/overrides.py b/numpy/testing/overrides.py index 781f7d100..aa8977662 100644 --- a/numpy/testing/overrides.py +++ b/numpy/testing/overrides.py @@ -38,8 +38,8 @@ def allows_array_ufunc_override(func): `True` if `func` is overridable via `__array_ufunc__` and `False` otherwise. - Note - ---- + Notes + ----- This function is equivalent to `isinstance(func, np.ufunc)` and will work correctly for ufuncs defined outside of Numpy. |