diff options
author | Debsankha Manik <dmanik@gwdg.de> | 2019-04-07 14:32:59 +0200 |
---|---|---|
committer | Debsankha Manik <dmanik@gwdg.de> | 2019-04-07 14:32:59 +0200 |
commit | c5413e780a90c0f636d563b0d31ad812131aac0c (patch) | |
tree | d006bda1336ab69e4e49082a78048d8fa7208dec /doc/release | |
parent | 5c8dccc93065d322682443adf118deb6747133f0 (diff) | |
download | numpy-c5413e780a90c0f636d563b0d31ad812131aac0c.tar.gz |
DOC: added release note for `isfinite` support for
`datetime64` and `timedelta64`
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/1.17.0-notes.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/release/1.17.0-notes.rst b/doc/release/1.17.0-notes.rst index 7857400e8..7777c8f05 100644 --- a/doc/release/1.17.0-notes.rst +++ b/doc/release/1.17.0-notes.rst @@ -197,6 +197,10 @@ The boolean and integer types are incapable of storing ``np.nan`` and ``np.inf`` which allows us to provide specialized ufuncs that are up to 250x faster than the current approach. +``np.isfinite`` ufunc supports ``datetime64`` and ``timedelta64`` types +----------------------------------------------------------------------- +Previously, `np.isfinite` used to raise a ``TypeError`` on being used on these +two types. Changes ======= |