Skip to content

Commit 51eccaa

Browse files
tuhinsharma121pmhatre1
authored andcommitted
DOC: Enforce Numpy Docstring Validation for pandas.Index.fillna (pandas-dev#58417)
* DOC: add RT03 to pandas.Index.fillna * DOC: remove pandas.Index.fillna
1 parent 1fa0317 commit 51eccaa

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
124124
-i "pandas.Index.dropna RT03,SA01" \
125125
-i "pandas.Index.duplicated RT03" \
126126
-i "pandas.Index.empty GL08" \
127-
-i "pandas.Index.fillna RT03" \
128127
-i "pandas.Index.get_indexer PR07,SA01" \
129128
-i "pandas.Index.get_indexer_for PR01,SA01" \
130129
-i "pandas.Index.get_indexer_non_unique PR07,SA01" \

pandas/core/indexes/base.py

+1
Original file line numberDiff line numberDiff line change
@@ -2578,6 +2578,7 @@ def fillna(self, value):
25782578
Returns
25792579
-------
25802580
Index
2581+
NA/NaN values replaced with `value`.
25812582
25822583
See Also
25832584
--------

0 commit comments

Comments
 (0)