Skip to content

Commit

Permalink
added see also to min, max, resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
brownl83 committed Dec 4, 2024
1 parent 0c401f1 commit d1b924a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pandas/_libs/tslibs/timedeltas.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1900,13 +1900,28 @@ class Timedelta(_Timedelta):
The minimum representable `Timedelta`, corresponding to the smallest
duration supported.
See Also
--------
Timedelta.max : The maximum representable `Timedelta`.
Timedelta.resolution : The smallest possible difference between non-equal `Timedelta` objects.
max : Timedelta
The maximum representable `Timedelta`, corresponding to the largest
duration supported.
See Also
--------
Timedelta.min : The minimum representable `Timedelta`.
Timedelta.resolution : The smallest possible difference between non-equal `Timedelta` objects.
resolution : Timedelta
The smallest possible difference between non-equal `Timedelta` objects.
See Also
--------
Timedelta.min : The minimum representable `Timedelta`.
Timedelta.max : The maximum representable `Timedelta`.
See Also
--------
Timestamp : Represents a single timestamp in time.
Expand Down

0 comments on commit d1b924a

Please sign in to comment.