diff options
-rw-r--r-- | doc/release/1.11.0-notes.rst | 4 | ||||
-rw-r--r-- | numpy/testing/utils.py | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/doc/release/1.11.0-notes.rst b/doc/release/1.11.0-notes.rst index ac3c1578c..8ac8e963f 100644 --- a/doc/release/1.11.0-notes.rst +++ b/doc/release/1.11.0-notes.rst @@ -186,6 +186,10 @@ if the matrix product is between a matrix and its transpose, it will use **Note:** Requires the transposed and non-transposed matrices to share data. +*np.testing.assert_warns* can now be used as a context manager +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +This matches the behavior of ``assert_raises``. + Changes ======= Pyrex support was removed from ``numpy.distutils``. The method diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 72105ca31..10a48ad79 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -1736,6 +1736,8 @@ def assert_warns(warning_class, *args, **kwargs): with assert_warns(SomeWarning): do_something() + The ability to be used as a context manager is new in NumPy v1.11.0. + .. versionadded:: 1.4.0 Parameters @@ -1783,6 +1785,8 @@ def assert_no_warnings(*args, **kwargs): with assert_no_warnings(): do_something() + The ability to be used as a context manager is new in NumPy v1.11.0. + .. versionadded:: 1.7.0 Parameters |