[go: up one dir, main page]

Skip to content

Commit

Permalink
DOC: Fix Pandas.series.str.fullmatch RT03 (pandas-dev#59395)
Browse files Browse the repository at this point in the history
* DOC: fix andas.Series.str.fullmatch RT03

* DOC: remove pandas.Series.str.fullmatch RT03 from code_checks.sh
  • Loading branch information
KatsiarynaDzibrova authored Aug 6, 2024
1 parent 70bb855 commit dfbd97e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.Series.str.center RT03,SA01" \
-i "pandas.Series.str.decode PR07,RT03,SA01" \
-i "pandas.Series.str.encode PR07,RT03,SA01" \
-i "pandas.Series.str.fullmatch RT03" \
-i "pandas.Series.str.index RT03" \
-i "pandas.Series.str.ljust RT03,SA01" \
-i "pandas.Series.str.lower RT03" \
Expand Down
3 changes: 3 additions & 0 deletions pandas/core/strings/accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1418,6 +1418,9 @@ def fullmatch(self, pat, case: bool = True, flags: int = 0, na=None):
Returns
-------
Series/Index/array of boolean values
The function returns a Series, Index, or array of boolean values,
where True indicates that the entire string matches the regular
expression pattern and False indicates that it does not.
See Also
--------
Expand Down

0 comments on commit dfbd97e

Please sign in to comment.