From 46cbf641610ce61f47125549941e1eeb26c8b448 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Tue, 30 Apr 2024 17:57:48 +0530 Subject: [PATCH 1/3] DOC: add SA01PR01 in pandas.DataFrame.at_time --- pandas/core/generic.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 121f49cb7d1cf..24727bb9d83c1 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -8532,6 +8532,8 @@ def at_time(self, time, asof: bool = False, axis: Axis | None = None) -> Self: ---------- time : datetime.time or str The values to select. + asof : bool, default False + This parameter is currently not supported. axis : {0 or 'index', 1 or 'columns'}, default 0 For `Series` this parameter is unused and defaults to 0. From f8ffe9ea185ee6ef1d8c467db3492ac10f695680 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Tue, 30 Apr 2024 17:58:29 +0530 Subject: [PATCH 2/3] DOC: remove PR01 in pandas.DataFrame.at_time --- ci/code_checks.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/code_checks.sh b/ci/code_checks.sh index 161047197ff6f..e91848c772260 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -71,7 +71,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i ES01 `# For now it is ok if docstrings are missing the extended summary` \ -i "pandas.Series.dt PR01" `# Accessors are implemented as classes, but we do not document the Parameters section` \ -i "pandas.DataFrame.__dataframe__ SA01" \ - -i "pandas.DataFrame.at_time PR01" \ -i "pandas.DataFrame.kurt RT03,SA01" \ -i "pandas.DataFrame.kurtosis RT03,SA01" \ -i "pandas.DataFrame.max RT03" \ From d42e938c80ec7ede16bb3368a50ddc2b79c0acbc Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Tue, 30 Apr 2024 18:35:09 +0530 Subject: [PATCH 3/3] DOC: remove pandas.Series.at_time --- ci/code_checks.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/code_checks.sh b/ci/code_checks.sh index e91848c772260..7da89f8824a20 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -192,7 +192,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.Series SA01" \ -i "pandas.Series.__iter__ RT03,SA01" \ -i "pandas.Series.add PR07" \ - -i "pandas.Series.at_time PR01" \ -i "pandas.Series.backfill PR01,SA01" \ -i "pandas.Series.case_when RT03" \ -i "pandas.Series.cat PR07,SA01" \