diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-03-24 10:20:28 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-03-24 10:20:28 -0600 |
commit | 3a4030c650a0510b8e673f34464f4ef64212b022 (patch) | |
tree | 1a3d33ac59bec9acf2fcbb657c0a9b79f71e93ae /doc | |
parent | a0bbdcfda546a112b36353f8b5c6dd2c0e07f916 (diff) | |
parent | 123b319be37f01e3c4f2e42552d4ca121b27ca38 (diff) | |
download | numpy-3a4030c650a0510b8e673f34464f4ef64212b022.tar.gz |
Merge pull request #4358 from seberg/fast-select
ENH: Speed improvements and deprecations for np.select
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.9.0-notes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/1.9.0-notes.rst b/doc/release/1.9.0-notes.rst index f1d553952..bb838fa07 100644 --- a/doc/release/1.9.0-notes.rst +++ b/doc/release/1.9.0-notes.rst @@ -274,6 +274,12 @@ Non-integer scalars for sequence repetition Using non-integer numpy scalars to repeat python sequences is deprecated. For example ``np.float_(2) * [1]`` will be an error in the future. +``select`` input deprecations +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The integer and empty input to ``select`` is deprecated. In the future only +boolean arrays will be valid conditions and an empty ``condlist`` will be +considered an input error instead of returning the default. + C-API ~~~~~ |