diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-06-10 16:13:27 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-06-10 16:13:27 -0700 |
commit | 15f2d6073badcb21c19384c77e0f150619657bd9 (patch) | |
tree | dac07fec35a5f6656d8fb1bee067b71c9291b3ff /numpy/testing/utils.py | |
parent | 4ed88a8f9520a1f877f62724de4ea7ae3fc738af (diff) | |
parent | a9a470c841eeb5f0fb2c2ae9639f6c2833f03d00 (diff) | |
download | numpy-15f2d6073badcb21c19384c77e0f150619657bd9.tar.gz |
Merge pull request #3422 from charris/deprecate-modules
DEP: Deprecate the oldnumeric and numarray modules.
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 2d8d57c5f..f58997d58 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -26,8 +26,10 @@ __all__ = ['assert_equal', 'assert_almost_equal','assert_approx_equal', 'assert_array_max_ulp', 'assert_warns', 'assert_no_warnings', 'assert_allclose'] + verbose = 0 + def assert_(val, msg='') : """ Assert that works in release mode. |