diff --git a/contrib/python3-whitelist b/contrib/python3-whitelist --- a/contrib/python3-whitelist +++ b/contrib/python3-whitelist @@ -405,6 +405,7 @@ test-pager-legacy.t test-pager.t test-parents.t +test-parse-date.t test-parseindex2.py test-patch-offset.t test-patch.t diff --git a/mercurial/utils/dateutil.py b/mercurial/utils/dateutil.py --- a/mercurial/utils/dateutil.py +++ b/mercurial/utils/dateutil.py @@ -303,17 +303,17 @@ if not date: raise error.Abort(_("dates cannot consist entirely of whitespace")) - elif date[0] == "<": + elif date[0:1] == b"<": if not date[1:]: raise error.Abort(_("invalid day spec, use '": + elif date[0:1] == b">": if not date[1:]: raise error.Abort(_("invalid day spec, use '>DATE'")) when = lower(date[1:]) return lambda x: x >= when - elif date[0] == "-": + elif date[0:1] == b"-": try: days = int(date[1:]) except ValueError: @@ -323,8 +323,8 @@ % date[1:]) when = makedate()[0] - days * 3600 * 24 return lambda x: x >= when - elif " to " in date: - a, b = date.split(" to ") + elif b" to " in date: + a, b = date.split(b" to ") start, stop = lower(a), upper(b) return lambda x: x >= start and x <= stop else: