@@ -5135,6 +5135,11 @@ def reindex( # type: ignore[override]
51355135
51365136 Parameters
51375137 ----------
5138+ index : scalar, list-like, dict-like or function, optional
5139+ A scalar, list-like, dict-like or functions transformations to
5140+ apply to that axis' values.
5141+ axis : {0 or 'index'}, default 0
5142+ The axis to rename. For `Series` this parameter is unused and defaults to 0.
51385143 method : {{None, 'backfill'/'bfill', 'pad'/'ffill', 'nearest'}}
51395144 Method to use for filling holes in reindexed DataFrame.
51405145 Please note: this is only applicable to DataFrames/Series with a
@@ -6182,7 +6187,8 @@ def isna(self) -> Series:
61826187
61836188 def isnull (self ) -> Series :
61846189 """
6185- Series.isnull is an alias for Series.isna.
6190+ Series.isnull is an alias for Series.isna.
6191+
61866192 Detect missing values.
61876193
61886194 Return a boolean same-sized object indicating if the values are NA.
@@ -6323,7 +6329,8 @@ def notna(self) -> Series:
63236329
63246330 def notnull (self ) -> Series :
63256331 """
6326- Series.notnull is an alias for Series.notna.
6332+ Series.notnull is an alias for Series.notna.
6333+
63276334 Detect existing (non-missing) values.
63286335
63296336 Return a boolean same-sized object indicating if the values are not NA.
0 commit comments