File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
107
107
-i " pandas.Timedelta.min PR02" \
108
108
-i " pandas.Timedelta.resolution PR02" \
109
109
-i " pandas.Timedelta.to_timedelta64 SA01" \
110
- -i " pandas.Timedelta.total_seconds SA01" \
111
110
-i " pandas.TimedeltaIndex.to_pytimedelta RT03,SA01" \
112
111
-i " pandas.Timestamp.max PR02" \
113
112
-i " pandas.Timestamp.min PR02" \
Original file line number Diff line number Diff line change @@ -1189,6 +1189,14 @@ cdef class _Timedelta(timedelta):
1189
1189
"""
1190
1190
Total seconds in the duration.
1191
1191
1192
+ This method calculates the total duration in seconds by combining
1193
+ the days , seconds , and microseconds of the `Timedelta` object.
1194
+
1195
+ See Also
1196
+ --------
1197
+ to_timedelta : Convert argument to timedelta.
1198
+ Timedelta : Represents a duration , the difference between two dates or times.
1199
+
1192
1200
Examples
1193
1201
--------
1194
1202
>>> td = pd.Timedelta(' 1min' )
You can’t perform that action at this time.
0 commit comments