Skip to content

Commit 356b8aa

Browse files
committed
adding whatsnew
1 parent a3fd2ef commit 356b8aa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

doc/source/whatsnew/v0.24.0.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,13 +720,16 @@ Indexing
720720
- Bug where mixed indexes wouldn't allow integers for ``.at`` (:issue:`19860`)
721721
- ``Float64Index.get_loc`` now raises ``KeyError`` when boolean key passed. (:issue:`19087`)
722722
- Bug in :meth:`DataFrame.loc` when indexing with an :class:`IntervalIndex` (:issue:`19977`)
723+
- :class:`Index` no longer mangles ``None``, ``NaN`` and ``NaT``, i.e. they are treated as three different keys. However, for numeric Index all three are still coerced to a ``NaN`` (:issue:`22332`)
723724

724725
Missing
725726
^^^^^^^
726727

727728
- Bug in :func:`DataFrame.fillna` where a ``ValueError`` would raise when one column contained a ``datetime64[ns, tz]`` dtype (:issue:`15522`)
728729
- Bug in :func:`Series.hasnans` that could be incorrectly cached and return incorrect answers if null elements are introduced after an initial call (:issue:`19700`)
729-
- :func:`Series.isin` now treats all nans as equal also for ``np.object``-dtype. This behavior is consistent with the behavior for float64 (:issue:`22119`)
730+
- :func:`Series.isin` now treats all NaN-floats as equal also for `np.object`-dtype. This behavior is consistent with the behavior for float64 (:issue:`22119`)
731+
- :func:`unique` no longer mangles NaN-floats and the ``NaT``-object for `np.object`-dtype, i.e. ``NaT`` is no longer coerced to a NaN-value and is treated as a different entity. (:issue:`22295`)
732+
730733

731734
MultiIndex
732735
^^^^^^^^^^

0 commit comments

Comments
 (0)