From 6d962c3a4944eaedb749e6b5d6222a70a91ffc67 Mon Sep 17 00:00:00 2001 From: Katsiaryna Date: Sat, 3 Aug 2024 18:25:46 +0100 Subject: [PATCH 1/2] DOC: fix andas.Series.str.fullmatch RT03 --- pandas/core/strings/accessor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandas/core/strings/accessor.py b/pandas/core/strings/accessor.py index 7494a43caf004..de4d0fb08412a 100644 --- a/pandas/core/strings/accessor.py +++ b/pandas/core/strings/accessor.py @@ -1411,6 +1411,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 -------- From bd971edfb47ba985336c97b3d60ae5125ccd3d96 Mon Sep 17 00:00:00 2001 From: Katsiaryna Date: Sat, 3 Aug 2024 18:28:01 +0100 Subject: [PATCH 2/2] DOC: remove pandas.Series.str.fullmatch RT03 from code_checks.sh --- ci/code_checks.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/code_checks.sh b/ci/code_checks.sh index c4f143e9be2f4..a29dbcc59168d 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -183,7 +183,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.Series.str.decode PR07,RT03,SA01" \ -i "pandas.Series.str.encode PR07,RT03,SA01" \ -i "pandas.Series.str.find RT03" \ - -i "pandas.Series.str.fullmatch RT03" \ -i "pandas.Series.str.get RT03,SA01" \ -i "pandas.Series.str.index RT03" \ -i "pandas.Series.str.ljust RT03,SA01" \