diff options
author | David Cournapeau <cournape@gmail.com> | 2009-07-21 09:48:33 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-07-21 09:48:33 +0000 |
commit | a35153c83821f16e4e2a5c70e67aaf745f9accd5 (patch) | |
tree | eb6caf9d41b2c5d1a4334b4b8bb1c1583ca452fd | |
parent | eb6df7ca32375fe98c7902f77b90d6a7d9869ea3 (diff) | |
download | numpy-a35153c83821f16e4e2a5c70e67aaf745f9accd5.tar.gz |
Mention the deprecated decorator in the release notes.
-rw-r--r-- | doc/release/1.4.0-notes.rst | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/release/1.4.0-notes.rst b/doc/release/1.4.0-notes.rst index 2f18e5ed7..f2804668e 100644 --- a/doc/release/1.4.0-notes.rst +++ b/doc/release/1.4.0-notes.rst @@ -40,6 +40,14 @@ The following ufuncs have been added to the C API: #. copysign - return the value of the first argument with the sign copied from the second argument. +Testing +~~~~~~~ + + #. deprecated decorator: this decorator may be used to avoid cluttering + testing output while testing DeprecationWarning is effectively raised by + the decorated test. + + Deprecations ============ @@ -48,7 +56,8 @@ The following functions are deprecated: #. correlate: it takes a new keyword argument old_behavior. When True (the default), it returns the same result as before. When False, compute the conventional correlation, and take the conjugate for complex arrays. The - old behavior will be removed in NumPy 1.5 + old behavior will be removed in NumPy 1.5, and raises a + DeprecationWarning in 1.4. New iterators ~~~~~~~~~~~~~ |