summaryrefslogtreecommitdiff
path: root/numpy/testing
diff options
context:
space:
mode:
authorSachin Krishnan T V <sachu92@gmail.com>2022-05-23 19:46:39 +0200
committerSachin Krishnan T V <sachu92@gmail.com>2022-05-23 19:46:39 +0200
commitb1730f72a647a56a43e109613bf74238fdcb9983 (patch)
tree92b73a236ca8a910eb8957973ed006a9bf540136 /numpy/testing
parent4e70f09a4f2679a973f36a666ef4249f465af2d4 (diff)
downloadnumpy-b1730f72a647a56a43e109613bf74238fdcb9983.tar.gz
Break lines in comments to follow line length limits
Diffstat (limited to 'numpy/testing')
-rw-r--r--numpy/testing/_private/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py
index c44815d8c..e85eda3d7 100644
--- a/numpy/testing/_private/utils.py
+++ b/numpy/testing/_private/utils.py
@@ -1517,9 +1517,9 @@ def assert_allclose(actual, desired, rtol=1e-7, atol=0, equal_nan=True,
Notes
-----
- When one of ``actual`` and ``desired`` is a scalar and the other is array_like,
- the function checks that each element of the array_like object is equal to
- the scalar.
+ When one of ``actual`` and ``desired`` is a scalar and the other is
+ array_like, the function checks that each element of the array_like
+ object is equal to the scalar.
Examples
--------