diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-06-20 14:42:12 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-06-21 13:46:12 -0600 |
commit | a27f56069fb883c44dd4986d15e751162d85b621 (patch) | |
tree | aef8812adfaf9e9830b87cc6f18bf31a8228b3df /numpy/core/numeric.py | |
parent | e22ae7421cfc65547b9e9e2dd7d296ca9d655efa (diff) | |
download | numpy-a27f56069fb883c44dd4986d15e751162d85b621.tar.gz |
DEP: Add notes to some deprecations.
Some keywords are deprecated and slated for removal in numpy 2.0.
Add comment to deprecation date to clarify that.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index a432f39e4..24d92f16f 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -900,7 +900,7 @@ def correlate(a, v, mode='valid', old_behavior=False): # the old behavior should be made available under a different name, see thread # http://thread.gmane.org/gmane.comp.python.numeric.general/12609/focus=12630 if old_behavior: - # 2009-07-18 RemoveMe + # 2009-07-18 Cannot remove without replacement function. warnings.warn(""" The old behavior of correlate was deprecated for 1.4.0, and will be completely removed for NumPy 2.0. |