Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pandas/_libs/tslibs/timedeltas.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1867,7 +1867,9 @@ class Timedelta(_Timedelta):
value : Timedelta, timedelta, np.timedelta64, str, or int
Input value.
unit : str, default 'ns'
Denote the unit of the input, if input is an integer.
If input is an integer, denote the unit of the input.
If input is a float, denote the unit of integer parts.
The decimal parts with resolution lower than 1 nanosecond are ignored.

Possible values:

Expand Down
Loading