summaryrefslogtreecommitdiff
path: root/numpy/testing/utils.py
diff options
context:
space:
mode:
authorStephan Hoyer <shoyer@gmail.com>2016-01-16 16:35:28 -0800
committerStephan Hoyer <shoyer@gmail.com>2016-01-16 16:35:28 -0800
commitda98bbc030c272edb1a8548a458b3957e29ce346 (patch)
tree0836fad6fe78c0e5416ac4bb028503c847f99d95 /numpy/testing/utils.py
parent426114879da49bf9a586b1991dcaf38ce594c4b6 (diff)
downloadnumpy-da98bbc030c272edb1a8548a458b3957e29ce346.tar.gz
DOC: document changes to assert_warns
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r--numpy/testing/utils.py4
1 files changed, 4 insertions, 0 deletions
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