summaryrefslogtreecommitdiff
path: root/numpy/lib/utils.py
diff options
context:
space:
mode:
authorJarrod Millman <millman@berkeley.edu>2009-11-13 17:49:06 +0000
committerJarrod Millman <millman@berkeley.edu>2009-11-13 17:49:06 +0000
commitf07c79d3709a7f81219abc3c516fd772f469c167 (patch)
treeeaff2baba0176a7c41e749fd61b88a421dcfb188 /numpy/lib/utils.py
parent3122ee546fc0617e195aeb288abe65b9ae95d983 (diff)
downloadnumpy-f07c79d3709a7f81219abc3c516fd772f469c167.tar.gz
first set of checkins from the doc editor
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):