Skip to content

Commit 2d22b60

Browse files
committed
DOC: move feature to correct whatsnew section; typos [ci skip]
1 parent da6e26d commit 2d22b60

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

doc/source/whatsnew/v0.24.0.txt

+4-5
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@ v0.24.0 (Month XX, 2018)
88
New features
99
~~~~~~~~~~~~
1010

11-
- ``ExcelWriter`` now accepts ``mode`` as a keyword argument, enabling append to existing workbooks when using the ``openpyxl`` engine (:issue:`3441`)
12-
1311
.. _whatsnew_0240.enhancements.extension_array_operators:
1412

1513
``ExtensionArray`` operator support
1614
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1715

1816
A ``Series`` based on an ``ExtensionArray`` now supports arithmetic and comparison
19-
operators. (:issue:`19577`). There are two approaches for providing operator support for an ``ExtensionArray``:
17+
operators (:issue:`19577`). There are two approaches for providing operator support for an ``ExtensionArray``:
2018

2119
1. Define each of the operators on your ``ExtensionArray`` subclass.
2220
2. Use an operator implementation from pandas that depends on operators that are already defined
@@ -70,6 +68,7 @@ Current Behavior:
7068

7169
Other Enhancements
7270
^^^^^^^^^^^^^^^^^^
71+
- ``ExcelWriter`` now accepts ``mode`` as a keyword argument, enabling append to existing workbooks when using the ``openpyxl`` engine (:issue:`3441`)
7372
- :func:`to_datetime` now supports the ``%Z`` and ``%z`` directive when passed into ``format`` (:issue:`13486`)
7473
- :func:`Series.mode` and :func:`DataFrame.mode` now support the ``dropna`` parameter which can be used to specify whether NaN/NaT values should be considered (:issue:`17534`)
7574
- :func:`to_csv` now supports ``compression`` keyword when a file handle is passed. (:issue:`21227`)
@@ -80,7 +79,7 @@ Other Enhancements
8079
<https://pandas-gbq.readthedocs.io/en/latest/changelog.html#changelog-0-5-0>`__.
8180
(:issue:`21627`)
8281
- New method :meth:`HDFStore.walk` will recursively walk the group hierarchy of an HDF5 file (:issue:`10932`)
83-
- :func:`read_html` copies cell data across ``colspan``s and ``rowspan``s, and it treats all-``th`` table rows as headers if ``header`` kwarg is not given and there is no ``thead`` (:issue:`17054`)
82+
- :func:`read_html` copies cell data across ``colspan`` and ``rowspan``, and it treats all-``th`` table rows as headers if ``header`` kwarg is not given and there is no ``thead`` (:issue:`17054`)
8483
- :meth:`Series.nlargest`, :meth:`Series.nsmallest`, :meth:`DataFrame.nlargest`, and :meth:`DataFrame.nsmallest` now accept the value ``"all"`` for the ``keep`` argument. This keeps all ties for the nth largest/smallest value (:issue:`16818`)
8584
- :class:`IntervalIndex` has gained the :meth:`~IntervalIndex.set_closed` method to change the existing ``closed`` value (:issue:`21670`)
8685
- :func:`~DataFrame.to_csv` and :func:`~DataFrame.to_json` now support ``compression='infer'`` to infer compression based on filename (:issue:`15008`)
@@ -319,7 +318,7 @@ Timezones
319318
- Bug in :class:`Timestamp` when passing different string date formats with a timezone offset would produce different timezone offsets (:issue:`12064`)
320319
- Bug when comparing a tz-naive :class:`Timestamp` to a tz-aware :class:`DatetimeIndex` which would coerce the :class:`DatetimeIndex` to tz-naive (:issue:`12601`)
321320
- Bug in :meth:`Series.truncate` with a tz-aware :class:`DatetimeIndex` which would cause a core dump (:issue:`9243`)
322-
- Bug in :class:`Series` constructor which would coerce tz-aware and tz-naive :class:`Timestamp`s to tz-aware (:issue:`13051`)
321+
- Bug in :class:`Series` constructor which would coerce tz-aware and tz-naive :class:`Timestamp` to tz-aware (:issue:`13051`)
323322
- Bug in :class:`Index` with ``datetime64[ns, tz]`` dtype that did not localize integer data correctly (:issue:`20964`)
324323
- Bug in :class:`DatetimeIndex` where constructing with an integer and tz would not localize correctly (:issue:`12619`)
325324
- Fixed bug where :meth:`DataFrame.describe` and :meth:`Series.describe` on tz-aware datetimes did not show `first` and `last` result (:issue:`21328`)

0 commit comments

Comments
 (0)