Skip to content

Commit d272349

Browse files
authored
Merge branch 'main' into issue-37210-to-sql-truncate
2 parents dbddaf0 + 2a10e04 commit d272349

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

doc/source/whatsnew/v0.12.0.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ API changes
133133
to be inserted if ``True``, default is ``False`` (same as prior to 0.12) (:issue:`3679`)
134134
- Implement ``__nonzero__`` for ``NDFrame`` objects (:issue:`3691`, :issue:`3696`)
135135

136-
- IO api
136+
- IO API
137137

138-
- added top-level function ``read_excel`` to replace the following,
138+
- Added top-level function ``read_excel`` to replace the following,
139139
The original API is deprecated and will be removed in a future version
140140

141141
.. code-block:: python
@@ -153,7 +153,7 @@ API changes
153153
154154
pd.read_excel("path_to_file.xls", "Sheet1", index_col=None, na_values=["NA"])
155155
156-
- added top-level function ``read_sql`` that is equivalent to the following
156+
- Added top-level function ``read_sql`` that is equivalent to the following
157157

158158
.. code-block:: python
159159
@@ -482,11 +482,11 @@ Bug fixes
482482

483483
- ``HDFStore``
484484

485-
- will retain index attributes (freq,tz,name) on recreation (:issue:`3499`)
486-
- will warn with a ``AttributeConflictWarning`` if you are attempting to append
485+
- Will retain index attributes (freq,tz,name) on recreation (:issue:`3499`)
486+
- Will warn with a ``AttributeConflictWarning`` if you are attempting to append
487487
an index with a different frequency than the existing, or attempting
488488
to append an index with a different name than the existing
489-
- support datelike columns with a timezone as data_columns (:issue:`2852`)
489+
- Support datelike columns with a timezone as data_columns (:issue:`2852`)
490490

491491
- Non-unique index support clarified (:issue:`3468`).
492492

doc/source/whatsnew/v3.0.0.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ Enhancements
1616

1717
.. _whatsnew_300.enhancements.enhancement1:
1818

19-
enhancement1
19+
Enhancement1
2020
^^^^^^^^^^^^
2121

2222
.. _whatsnew_300.enhancements.enhancement2:
2323

24-
enhancement2
24+
Enhancement2
2525
^^^^^^^^^^^^
2626

2727
.. _whatsnew_300.enhancements.other:

pandas/core/groupby/groupby.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3833,7 +3833,7 @@ def ffill(self, limit: int | None = None):
38333833
3 1.0 3.0 NaN NaN
38343834
4 1.0 1.0 NaN NaN
38353835
3836-
Only replace the first NaN element within a group along rows.
3836+
Only replace the first NaN element within a group along columns.
38373837
38383838
>>> df.groupby("key").ffill(limit=1)
38393839
A B C

0 commit comments

Comments
 (0)