summaryrefslogtreecommitdiff
path: root/numpy/lib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r--numpy/lib/utils.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py
index e030abf4f..43d6ede1f 100644
--- a/numpy/lib/utils.py
+++ b/numpy/lib/utils.py
@@ -96,9 +96,14 @@ else:
return func
class _Deprecate(object):
- """Decorator class to deprecate old functions.
+ """
+ Decorator class to deprecate old functions.
+
+ Refer to `deprecate` for details.
- Refer to ``decorate``.
+ See Also
+ --------
+ deprecate
"""
def __init__(self, old_name=None, new_name=None, message=None):