Skip to content

Commit dfbd97e

Browse files
DOC: Fix Pandas.series.str.fullmatch RT03 (#59395)
* DOC: fix andas.Series.str.fullmatch RT03 * DOC: remove pandas.Series.str.fullmatch RT03 from code_checks.sh
1 parent 70bb855 commit dfbd97e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
164164
-i "pandas.Series.str.center RT03,SA01" \
165165
-i "pandas.Series.str.decode PR07,RT03,SA01" \
166166
-i "pandas.Series.str.encode PR07,RT03,SA01" \
167-
-i "pandas.Series.str.fullmatch RT03" \
168167
-i "pandas.Series.str.index RT03" \
169168
-i "pandas.Series.str.ljust RT03,SA01" \
170169
-i "pandas.Series.str.lower RT03" \

pandas/core/strings/accessor.py

+3
Original file line numberDiff line numberDiff line change
@@ -1418,6 +1418,9 @@ def fullmatch(self, pat, case: bool = True, flags: int = 0, na=None):
14181418
Returns
14191419
-------
14201420
Series/Index/array of boolean values
1421+
The function returns a Series, Index, or array of boolean values,
1422+
where True indicates that the entire string matches the regular
1423+
expression pattern and False indicates that it does not.
14211424
14221425
See Also
14231426
--------

0 commit comments

Comments
 (0)