diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-06-20 16:59:46 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-06-21 14:17:57 -0600 |
commit | bac2fdf7c02b4bc07b9c05dbb6551004903279ca (patch) | |
tree | 8e2784d686fbb837ed9b80f12335d639103cfee0 /doc | |
parent | ec4e91b08f52b19b9c87f6020cac99027023038b (diff) | |
download | numpy-bac2fdf7c02b4bc07b9c05dbb6551004903279ca.tar.gz |
DEP,MAINT: Remove old_behavior keyword from numeric.correlate.
Risky perhaps. The old correlate behavior was deprecated in NumPy 1.4
and the default behavior changed to the new (standard) version in 1.5.
The old function, with slightly different signature, is still available
in numpy.core.multiarray.correlate.
If this causes problems in the 1.10 release process, this commit can be
reverted.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index b93a55e21..86faca213 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -32,7 +32,8 @@ Dropped Support: * try_run and get_output have been removed from numpy/distutils/command/config.py * The a._format attribute is no longer supported for array printing. -* Keywords ``skiprows`` and ``missing`` removed from genfromtxt. +* Keywords ``skiprows`` and ``missing`` removed from np.genfromtxt. +* Keyword ``old_behavior`` removed from np.correlate. Future Changes: |