From 6fb8942d08d6a514f9f7799e2fb2acda715c97f6 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Wed, 24 Apr 2024 12:59:00 +0530 Subject: [PATCH 1/3] DOC: added RT03 to pandas.Index.to_list --- pandas/core/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/core/base.py b/pandas/core/base.py index 424f0609dd485..d716a9ffb7bcc 100644 --- a/pandas/core/base.py +++ b/pandas/core/base.py @@ -789,6 +789,7 @@ def tolist(self) -> list: Returns ------- list + List containing the values as Python or pandas scalers. See Also -------- From eca632f6a35c3067220baeb78842c555a1161547 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Wed, 24 Apr 2024 12:59:54 +0530 Subject: [PATCH 2/3] DOC: remove pandas.Index.to_list --- ci/code_checks.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/code_checks.sh b/ci/code_checks.sh index 066c7176fcc34..8a529cc27a142 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -151,7 +151,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.Index.str PR01,SA01" \ -i "pandas.Index.symmetric_difference PR07,RT03,SA01" \ -i "pandas.Index.take PR01,PR07" \ - -i "pandas.Index.to_list RT03" \ -i "pandas.Index.union PR07,RT03,SA01" \ -i "pandas.Index.unique RT03" \ -i "pandas.Index.view GL08" \ From 13f558e4166605586d753a422670712e4f5fcfc0 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Wed, 24 Apr 2024 14:39:56 +0530 Subject: [PATCH 3/3] DOC: remove pandas.Series.tolist --- ci/code_checks.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/code_checks.sh b/ci/code_checks.sh index 8a529cc27a142..e7465d801a81f 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -375,7 +375,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.Series.swaplevel SA01" \ -i "pandas.Series.to_dict SA01" \ -i "pandas.Series.to_frame SA01" \ - -i "pandas.Series.to_list RT03" \ -i "pandas.Series.to_markdown SA01" \ -i "pandas.Series.to_string SA01" \ -i "pandas.Series.truediv PR07" \