diff options
author | Tirth Patel <tirthasheshpatel@gmail.com> | 2019-12-12 00:09:27 +0530 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2019-12-11 12:39:27 -0600 |
commit | 578f4e7dca4701637284c782d8c74c0d5b688341 (patch) | |
tree | 99288a0e1c304cbca43cdeb5c903dd7dbe90361f /doc | |
parent | 3261532917b3c3026aa9a3002d58b5915d7f315a (diff) | |
download | numpy-578f4e7dca4701637284c782d8c74c0d5b688341.tar.gz |
ENH: Add support to sort timedelta64 `NaT` to end of the array (gh-15068)
This work is a follow up of gh-12658.
As requested in gh-15063, add NaT sort support for timedelta64 datatypes also.
Fixes gh-15063
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/release/1.18.0-notes.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/source/release/1.18.0-notes.rst b/doc/source/release/1.18.0-notes.rst index 0cea811fb..76b358d98 100644 --- a/doc/source/release/1.18.0-notes.rst +++ b/doc/source/release/1.18.0-notes.rst @@ -296,6 +296,7 @@ Changes purposes, so that it sorts to the end of arrays. This change is for consistency with ``NaN`` sorting behavior. (`gh-12658 <https://github.com/numpy/numpy/pull/12658>`__) +(`gh-15068 <https://github.com/numpy/numpy/pull/15068>`__) Incorrect ``threshold`` in ``np.set_printoptions`` raises ``TypeError`` or ``ValueError`` ----------------------------------------------------------------------------------------- |