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: 4 additions & 0 deletions pandas/_libs/tslibs/offsets.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1639,6 +1639,10 @@ class DateOffset(RelativeDeltaOffset, metaclass=OffsetMeta):
"""
Standard kind of date increment used for a date range.

class pandas.tseries.offsets.DateOffset(
n = 1, normalize = False, weekday = 0, ``**kwds``
)

Works exactly like the keyword argument form of relativedelta.
Note that the positional argument form of relativedelta is not
supported. Use of the keyword n is discouraged-- you would be better
Expand Down
Loading