diff options
author | Travis Oliphant <oliphant@enthought.com> | 2007-12-15 18:56:40 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2007-12-15 18:56:40 +0000 |
commit | 0ce4792257d812a05ce222d0e5b5eb1aa54d19fd (patch) | |
tree | 03e69d64bd0d2871776d092297a5e5a40c7cd26a /utils.py | |
parent | e76b5fa6896c09257181675bbf4cf47789d32927 (diff) | |
download | numpy-0ce4792257d812a05ce222d0e5b5eb1aa54d19fd.tar.gz |
Start changes for numpy.lib to support deprecations in scipy.io
Diffstat (limited to 'utils.py')
-rw-r--r-- | utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ def deprecate(func, oldname, newname): return func(*args, **kwds) newfunc = _set_function_name(newfunc, oldname) doc = func.__doc__ - depdoc = '%s is DEPRECATED in numpy: use %s instead' % (oldname, newname,) + depdoc = '%s is DEPRECATED: use %s instead' % (oldname, newname,) if doc is None: doc = depdoc else: |