File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -76,9 +76,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
76
76
-i " pandas.Series.dt.freq GL08" \
77
77
-i " pandas.Series.dt.unit GL08" \
78
78
-i " pandas.Series.pad PR01,SA01" \
79
- -i " pandas.Timedelta.max PR02" \
80
- -i " pandas.Timedelta.min PR02" \
81
- -i " pandas.Timedelta.resolution PR02" \
82
79
-i " pandas.Timestamp.max PR02" \
83
80
-i " pandas.Timestamp.min PR02" \
84
81
-i " pandas.Timestamp.nanosecond GL08" \
Original file line number Diff line number Diff line change @@ -1893,6 +1893,21 @@ class Timedelta(_Timedelta):
1893
1893
Values for construction in compat with datetime.timedelta.
1894
1894
Numpy ints and floats will be coerced to python ints and floats.
1895
1895
1896
+ Attributes
1897
+ ----------
1898
+ resolution: Timedelta
1899
+ Represents the smallest difference between two time units that can be
1900
+ represented by the Timedelta object.
1901
+ Fixed at 0 days 00:00:00.000000001 (1 nanosecond).
1902
+ min : Timedelta
1903
+ Returns the minimum Timedelta value that can be created or used in
1904
+ pandas operations.
1905
+ Fixed at -106752 days +00:12:43.145224193
1906
+ max : Timedelta
1907
+ Returns the maximum Timedelta value that can be created or used in
1908
+ pandas operations.
1909
+ Fixed at 106751 days 23:47:16.854775807.
1910
+
1896
1911
See Also
1897
1912
--------
1898
1913
Timestamp : Represents a single timestamp in time.
You can’t perform that action at this time.
0 commit comments