@@ -1621,6 +1621,8 @@ cdef class BusinessDay(BusinessMixin):
1621
1621
The number of days represented.
1622
1622
normalize : bool, default False
1623
1623
Normalize start/end dates to midnight.
1624
+ offset : timedelta, default timedelta(0)
1625
+ Time offset to apply.
1624
1626
1625
1627
Examples
1626
1628
--------
@@ -3148,6 +3150,10 @@ cdef class Week(SingleConstructorOffset):
3148
3150
3149
3151
Parameters
3150
3152
----------
3153
+ n : int, default 1
3154
+ The number of weeks represented.
3155
+ normalize : bool, default False
3156
+ Normalize start/end dates to midnight before generating date range.
3151
3157
weekday : int or None, default None
3152
3158
Always generate specific day of week.
3153
3159
0 for Monday and 6 for Sunday.
@@ -3398,6 +3404,9 @@ cdef class LastWeekOfMonth(WeekOfMonthMixin):
3398
3404
Parameters
3399
3405
----------
3400
3406
n : int, default 1
3407
+ The number of months represented.
3408
+ normalize : bool, default False
3409
+ Normalize start/end dates to midnight before generating date range.
3401
3410
weekday : int {0, 1, ..., 6}, default 0
3402
3411
A specific integer for the day of the week.
3403
3412
@@ -4150,6 +4159,8 @@ cdef class CustomBusinessHour(BusinessHour):
4150
4159
Start time of your custom business hour in 24h format.
4151
4160
end : str, time, or list of str/time, default: "17:00"
4152
4161
End time of your custom business hour in 24h format.
4162
+ offset : timedelta, default timedelta(0)
4163
+ Time offset to apply.
4153
4164
4154
4165
Examples
4155
4166
--------
0 commit comments