File tree 3 files changed +3
-6
lines changed
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -499,9 +499,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
499
499
500
500
MSG=' Partially validate docstrings (PR07)' ; echo $MSG
501
501
$BASE_DIR /scripts/validate_docstrings.py --format=actions --errors=PR07 --ignore_functions \
502
- pandas.DataFrame.get\
503
- pandas.DataFrame.rolling\
504
- pandas.DataFrame.to_hdf\
505
502
pandas.DatetimeIndex.indexer_between_time\
506
503
pandas.DatetimeIndex.mean\
507
504
pandas.HDFStore.append\
Original file line number Diff line number Diff line change @@ -2646,6 +2646,7 @@ def to_hdf(
2646
2646
See the errors argument for :func:`open` for a full list
2647
2647
of options.
2648
2648
encoding : str, default "UTF-8"
2649
+ Set character encoding.
2649
2650
2650
2651
See Also
2651
2652
--------
Original file line number Diff line number Diff line change @@ -925,13 +925,12 @@ class Window(BaseWindow):
925
925
Default ``None`` (``'right'``).
926
926
927
927
step : int, default None
928
-
929
- .. versionadded:: 1.5.0
930
-
931
928
Evaluate the window at every ``step`` result, equivalent to slicing as
932
929
``[::step]``. ``window`` must be an integer. Using a step argument other
933
930
than None or 1 will produce a result with a different shape than the input.
934
931
932
+ .. versionadded:: 1.5.0
933
+
935
934
method : str {'single', 'table'}, default 'single'
936
935
937
936
.. versionadded:: 1.3.0
You can’t perform that action at this time.
0 commit comments