| 4877 | # Two weekday objects equal if their "weekday" and "n" attributes are |
| 4878 | # available and the same |
| 4879 | class BasicWeekday(object): |
| 4880 | def __init__(self, weekday): |
| 4881 | self.weekday = weekday |
| 4882 | |
| 4883 | class BasicNWeekday(BasicWeekday): |
| 4884 | def __init__(self, weekday, n=None): |
no outgoing calls