You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.24.0.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -1013,7 +1013,8 @@ update the ``ExtensionDtype._metadata`` tuple to match the signature of your
1013
1013
1014
1014
**Other changes**
1015
1015
1016
-
- ``ExtensionArray`` has gained the abstract methods ``.dropna()`` (:issue:`21185`)
1016
+
- :meth:`~pandas.api.types.ExtensionArray.dropna` has been added (:issue:`21185`)
1017
+
- :meth:`~pandas.api.types.ExtensionArray.repeat` has been added (:issue:`24349`)
1017
1018
- ``ExtensionDtype`` has gained the ability to instantiate from string dtypes, e.g. ``decimal`` would instantiate a registered ``DecimalDtype``; furthermore
1018
1019
the ``ExtensionDtype`` has gained the method ``construct_array_type`` (:issue:`21185`)
1019
1020
- An ``ExtensionArray`` with a boolean dtype now works correctly as a boolean indexer. :meth:`pandas.api.types.is_bool_dtype` now properly considers them boolean (:issue:`22326`)
@@ -1310,6 +1311,7 @@ Categorical
1310
1311
- Bug when resampling :meth:`DataFrame.resample()` and aggregating on categorical data, the categorical dtype was getting lost. (:issue:`23227`)
1311
1312
- Bug in many methods of the ``.str``-accessor, which always failed on calling the ``CategoricalIndex.str`` constructor (:issue:`23555`, :issue:`23556`)
1312
1313
- Bug in :meth:`Series.where` losing the categorical dtype for categorical data (:issue:`24077`)
1314
+
- Bug in :meth:`Categorical.apply` where ``NaN`` values could be handled unpredictably. They now remain unchanged (:issue:`24241`)
0 commit comments