diff --git a/ci/code_checks.sh b/ci/code_checks.sh index c4e43b88a0097..fc52b48e47fdf 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -499,9 +499,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then MSG='Partially validate docstrings (PR07)' ; echo $MSG $BASE_DIR/scripts/validate_docstrings.py --format=actions --errors=PR07 --ignore_functions \ - pandas.DataFrame.get\ - pandas.DataFrame.rolling\ - pandas.DataFrame.to_hdf\ pandas.DatetimeIndex.indexer_between_time\ pandas.DatetimeIndex.mean\ pandas.HDFStore.append\ diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 5119e799e6de1..f21638a2f9974 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -2646,6 +2646,7 @@ def to_hdf( See the errors argument for :func:`open` for a full list of options. encoding : str, default "UTF-8" + Set character encoding. See Also -------- diff --git a/pandas/core/window/rolling.py b/pandas/core/window/rolling.py index 52eb8cf45d170..07998cdbd40b5 100644 --- a/pandas/core/window/rolling.py +++ b/pandas/core/window/rolling.py @@ -925,13 +925,12 @@ class Window(BaseWindow): Default ``None`` (``'right'``). step : int, default None - - .. versionadded:: 1.5.0 - Evaluate the window at every ``step`` result, equivalent to slicing as ``[::step]``. ``window`` must be an integer. Using a step argument other than None or 1 will produce a result with a different shape than the input. + .. versionadded:: 1.5.0 + method : str {'single', 'table'}, default 'single' .. versionadded:: 1.3.0