Skip to content

Commit cb8b213

Browse files
DOC: Enforce Numpy Docstring Validation for pandas.DataFrame.attime (#58492)
* DOC: add SA01PR01 in pandas.DataFrame.at_time * DOC: remove PR01 in pandas.DataFrame.at_time * DOC: remove pandas.Series.at_time
1 parent c9bc480 commit cb8b213

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/code_checks.sh

-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
7070
--format=actions \
7171
-i ES01 `# For now it is ok if docstrings are missing the extended summary` \
7272
-i "pandas.Series.dt PR01" `# Accessors are implemented as classes, but we do not document the Parameters section` \
73-
-i "pandas.DataFrame.at_time PR01" \
7473
-i "pandas.DataFrame.max RT03" \
7574
-i "pandas.DataFrame.mean RT03,SA01" \
7675
-i "pandas.DataFrame.median RT03,SA01" \
@@ -187,7 +186,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
187186
-i "pandas.Series SA01" \
188187
-i "pandas.Series.__iter__ RT03,SA01" \
189188
-i "pandas.Series.add PR07" \
190-
-i "pandas.Series.at_time PR01" \
191189
-i "pandas.Series.backfill PR01,SA01" \
192190
-i "pandas.Series.case_when RT03" \
193191
-i "pandas.Series.cat PR07,SA01" \

pandas/core/generic.py

+2
Original file line numberDiff line numberDiff line change
@@ -8532,6 +8532,8 @@ def at_time(self, time, asof: bool = False, axis: Axis | None = None) -> Self:
85328532
----------
85338533
time : datetime.time or str
85348534
The values to select.
8535+
asof : bool, default False
8536+
This parameter is currently not supported.
85358537
axis : {0 or 'index', 1 or 'columns'}, default 0
85368538
For `Series` this parameter is unused and defaults to 0.
85378539

0 commit comments

Comments
 (0)