Skip to content

Commit

Permalink
Backport PR #45587: DOC: append deprecation (#45942)
Browse files Browse the repository at this point in the history
Co-authored-by: gesoos <66533786+gesoos@users.noreply.github.com>
  • Loading branch information
meeseeksmachine and gesoos committed Feb 11, 2022
1 parent f61dfde commit 47e3b40
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/source/whatsnew/v1.4.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -637,11 +637,11 @@ will continue to return :class:`Int64Index`, :class:`UInt64Index` and
.. _whatsnew_140.deprecations.frame_series_append:

Deprecated Frame.append and Series.append
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Deprecated DataFrame.append and Series.append
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

:meth:`DataFrame.append` and :meth:`Series.append` have been deprecated and will
be removed in Pandas 2.0. Use :func:`pandas.concat` instead (:issue:`35407`).
be removed in a future version. Use :func:`pandas.concat` instead (:issue:`35407`).

*Deprecated syntax*

Expand Down
4 changes: 4 additions & 0 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -8930,6 +8930,10 @@ def append(
"""
Append rows of `other` to the end of caller, returning a new object.
.. deprecated:: 1.4.0
Use :func:`concat` instead. For further details see
:ref:`whatsnew_140.deprecations.frame_series_append`
Columns in `other` that are not in the caller are added as new columns.
Parameters
Expand Down
4 changes: 4 additions & 0 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -2853,6 +2853,10 @@ def append(
"""
Concatenate two or more Series.
.. deprecated:: 1.4.0
Use :func:`concat` instead. For further details see
:ref:`whatsnew_140.deprecations.frame_series_append`
Parameters
----------
to_append : Series or list/tuple of Series
Expand Down

0 comments on commit 47e3b40

Please sign in to comment.