(self, *args, **kwargs)
| 393 | |
| 394 | class _ymd(list): |
| 395 | def __init__(self, *args, **kwargs): |
| 396 | super(self.__class__, self).__init__(*args, **kwargs) |
| 397 | self.century_specified = False |
| 398 | self.dstridx = None |
| 399 | self.mstridx = None |
| 400 | self.ystridx = None |
| 401 | |
| 402 | @property |
| 403 | def has_year(self): |