From a7d5890836b253efe4dc45cf05a2e3250c04d87f Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Mon, 11 Mar 2019 15:08:55 +0100 Subject: [PATCH] DOC: clean-up of 0.24.2 whatsnew file --- doc/source/whatsnew/v0.24.2.rst | 45 +-------------------------------- 1 file changed, 1 insertion(+), 44 deletions(-) diff --git a/doc/source/whatsnew/v0.24.2.rst b/doc/source/whatsnew/v0.24.2.rst index 2c6d1e01ed89b..ab5404addb15e 100644 --- a/doc/source/whatsnew/v0.24.2.rst +++ b/doc/source/whatsnew/v0.24.2.rst @@ -18,7 +18,7 @@ including other versions of pandas. .. _whatsnew_0242.regressions: Fixed Regressions -^^^^^^^^^^^^^^^^^ +~~~~~~~~~~~~~~~~~ - Fixed regression in :meth:`DataFrame.all` and :meth:`DataFrame.any` where ``bool_only=True`` was ignored (:issue:`25101`) - Fixed issue in ``DataFrame`` construction with passing a mixed list of mixed types could segfault. (:issue:`25075`) @@ -33,75 +33,32 @@ Fixed Regressions - Fixed regression in :class:`Categorical`, where constructing it from a categorical ``Series`` and an explicit ``categories=`` that differed from that in the ``Series`` created an invalid object which could trigger segfaults. (:issue:`25318`) - Fixed pip installing from source into an environment without NumPy (:issue:`25193`) -.. _whatsnew_0242.enhancements: - -Enhancements -^^^^^^^^^^^^ - -- -- - .. _whatsnew_0242.bug_fixes: Bug Fixes ~~~~~~~~~ -**Conversion** - -- -- -- - -**Indexing** - -- -- -- - **I/O** - Better handling of terminal printing when the terminal dimensions are not known (:issue:`25080`) - Bug in reading a HDF5 table-format ``DataFrame`` created in Python 2, in Python 3 (:issue:`24925`) - Bug in reading a JSON with ``orient='table'`` generated by :meth:`DataFrame.to_json` with ``index=False`` (:issue:`25170`) - Bug where float indexes could have misaligned values when printing (:issue:`25061`) -- - -**Categorical** - -- -- -- - -**Timezones** - -- -- -- - -**Timedelta** - -- -- -- **Reshaping** - Bug in :meth:`~pandas.core.groupby.GroupBy.transform` where applying a function to a timezone aware column would return a timezone naive result (:issue:`24198`) - Bug in :func:`DataFrame.join` when joining on a timezone aware :class:`DatetimeIndex` (:issue:`23931`) -- **Visualization** - Bug in :meth:`Series.plot` where a secondary y axis could not be set to log scale (:issue:`25545`) -- -- **Other** - Bug in :meth:`Series.is_unique` where single occurrences of ``NaN`` were not considered unique (:issue:`25180`) - Bug in :func:`merge` when merging an empty ``DataFrame`` with an ``Int64`` column or a non-empty ``DataFrame`` with an ``Int64`` column that is all ``NaN`` (:issue:`25183`) - Bug in ``IntervalTree`` where a ``RecursionError`` occurs upon construction due to an overflow when adding endpoints, which also causes :class:`IntervalIndex` to crash during indexing operations (:issue:`25485`) -- .. _whatsnew_0242.contributors: