Skip to content

Commit 8813953

Browse files
Doc: fix RT03 pandas.timedelta_range and pandas.util.hash_pandas_object (#57799)
fix RT03 pandas.timedelta_range and pandas.util.hash_pandas_object
1 parent 0df2f0d commit 8813953

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: ci/code_checks.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -852,9 +852,7 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
852852
pandas.read_sas\
853853
pandas.read_spss\
854854
pandas.read_stata\
855-
pandas.set_eng_float_format\
856-
pandas.timedelta_range\
857-
pandas.util.hash_pandas_object # There should be no backslash in the final line, please keep this comment in the last ignored function
855+
pandas.set_eng_float_format # There should be no backslash in the final line, please keep this comment in the last ignored function
858856
RET=$(($RET + $?)) ; echo $MSG "DONE"
859857

860858
MSG='Partially validate docstrings (SA01)' ; echo $MSG

Diff for: pandas/core/indexes/timedeltas.py

+1
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ def timedelta_range(
304304
Returns
305305
-------
306306
TimedeltaIndex
307+
Fixed frequency, with day as the default.
307308
308309
Notes
309310
-----

Diff for: pandas/core/util/hashing.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ def hash_pandas_object(
106106
107107
Returns
108108
-------
109-
Series of uint64, same length as the object
109+
Series of uint64
110+
Same length as the object.
110111
111112
Examples
112113
--------

0 commit comments

Comments
 (0)