diff options
author | David Cournapeau <cournape@gmail.com> | 2009-07-21 06:04:20 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-07-21 06:04:20 +0000 |
commit | 759e989edf36a77648c2fdb970ba469e37ebc53a (patch) | |
tree | 758747934f5cb16079a4d5e1223e0235a49d1127 /numpy/testing/decorators.py | |
parent | 5380c9461a07c1d305999b773287465ebbbd7c99 (diff) | |
download | numpy-759e989edf36a77648c2fdb970ba469e37ebc53a.tar.gz |
Add versionadded 1.4.0 for deprecated decorator.
Diffstat (limited to 'numpy/testing/decorators.py')
-rw-r--r-- | numpy/testing/decorators.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/numpy/testing/decorators.py b/numpy/testing/decorators.py index 174b68771..e8b09d188 100644 --- a/numpy/testing/decorators.py +++ b/numpy/testing/decorators.py @@ -240,6 +240,11 @@ def deprecated(conditional=True): Decorator, which, when applied to a function, causes SkipTest to be raised when the skip_condition was True, and the function to be called normally otherwise. + + Notes + ----- + + .. versionadded:: 1.4.0 """ def deprecate_decorator(f): # Local import to avoid a hard nose dependency and only incur the |