diff options
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 87ca389f7..abb2956a1 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -381,6 +381,7 @@ def assert_almost_equal(actual,desired,decimal=7,err_msg='',verbose=True): Examples -------- + >>> import numpy.testing as npt >>> npt.assert_almost_equal(2.3333333333333, 2.33333334) >>> npt.assert_almost_equal(2.3333333333333, 2.33333334, decimal=10) ... |