diff options
Diffstat (limited to 'numpy')
-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 |