diff --git a/Lib/_strptime.py b/Lib/_strptime.py index dfd2bc5d8b4af5..5d9df2b12f8dda 100644 --- a/Lib/_strptime.py +++ b/Lib/_strptime.py @@ -300,8 +300,6 @@ def __init__(self, locale_time=None): 'V': r"(?P5[0-3]|0[1-9]|[1-4]\d|\d)", # W is set below by using 'U' 'y': r"(?P\d\d)", - #XXX: Does 'Y' need to worry about having less or more than - # 4 digits? 'Y': r"(?P\d\d\d\d)", 'z': r"(?P[+-]\d\d:?[0-5]\d(:?[0-5]\d(\.\d{1,6})?)?|(?-i:Z))", 'A': self.__seqToRE(self.locale_time.f_weekday, 'A'),