Skip to content

Commit 02d7c00

Browse files
committed
resolving comments
1 parent 80d04b2 commit 02d7c00

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

doc/source/whatsnew/v0.23.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1005,7 +1005,7 @@ Deprecations
10051005
- Setting ``PeriodIndex.freq`` (which was not guaranteed to work correctly) is deprecated. Use :meth:`PeriodIndex.asfreq` instead (:issue:`20678`)
10061006
- ``Index.get_duplicates()`` is deprecated and will be removed in a future version (:issue:`20239`)
10071007
- The previous default behavior of negative indices in ``Categorical.take`` is deprecated. In a future version it will change from meaning missing values to meaning positional indices from the right. The future behavior is consistent with :meth:`Series.take` (:issue:`20664`).
1008-
- Passing multiple axes to the ``axis`` parameter in :func: `DataFrame.dropna` has been deprecated and will not be suppoted in a future version (:issue:`20987`)
1008+
- Passing multiple axes to the ``axis`` parameter in :func: `DataFrame.dropna` has been deprecated and will not be supported in a future version (:issue:`20987`)
10091009

10101010

10111011
.. _whatsnew_0230.prior_deprecations:

pandas/core/frame.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4175,7 +4175,8 @@ def dropna(self, axis=0, how='any', thresh=None, subset=None,
41754175
* 0, or 'index' : Drop rows which contain missing values.
41764176
* 1, or 'columns' : Drop columns which contain missing value.
41774177
4178-
deprecated:: 0.23.0: Pass tuple or list to drop on multiple axes.
4178+
.. deprecated:: 0.23.0: Pass tuple or list to drop on multiple
4179+
axes.
41794180
how : {'any', 'all'}, default 'any'
41804181
Determine if row or column is removed from DataFrame, when we have
41814182
at least one NA or all NA.

0 commit comments

Comments
 (0)