Skip to content

Commit 479e1f0

Browse files
committed
fix: Fixes doc string of pandas.core.resample.Resampler.interpolate. Adds breaking API change description to whatsnew.
1 parent 7eb4483 commit 479e1f0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

doc/source/whatsnew/v3.0.0.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ Other API changes
160160
- 3rd party ``py.path`` objects are no longer explicitly supported in IO methods. Use :py:class:`pathlib.Path` objects instead (:issue:`57091`)
161161
- :func:`read_table`'s ``parse_dates`` argument defaults to ``None`` to improve consistency with :func:`read_csv` (:issue:`57476`)
162162
- Made ``dtype`` a required argument in :meth:`ExtensionArray._from_sequence_of_strings` (:issue:`56519`)
163+
- Removed ``inplace`` argument in :meth:`Resampler.interpolate`. (:issue:`58690`)
163164
- Updated :meth:`DataFrame.to_excel` so that the output spreadsheet has no styling. Custom styling can still be done using :meth:`Styler.to_excel` (:issue:`54154`)
164165
- pickle and HDF (``.h5``) files created with Python 2 are no longer explicitly supported (:issue:`57387`)
165166
- pickled objects from pandas version less than ``1.0.0`` are no longer supported (:issue:`57155`)

pandas/core/resample.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -807,8 +807,6 @@ def interpolate(
807807
limit : int, optional
808808
Maximum number of consecutive NaNs to fill. Must be greater than
809809
0.
810-
inplace : bool, default False
811-
Update the data in place if possible.
812810
limit_direction : {{'forward', 'backward', 'both'}}, Optional
813811
Consecutive NaNs will be filled in this direction.
814812

0 commit comments

Comments
 (0)