# HG changeset patch # User Mark Thomas # Date 1539437947 0 # Node ID d4d2c567bb721633acc1d96db89cc46978381c9b # Parent 4f1f024353aed07506eb26dd0d4a57a3654b0c3d py3: fix test-parse-date.t Differential Revision: https://phab.mercurial-scm.org/D5084 diff -r 4f1f024353ae -r d4d2c567bb72 contrib/python3-whitelist --- a/contrib/python3-whitelist Fri Oct 12 16:51:11 2018 +0200 +++ b/contrib/python3-whitelist Sat Oct 13 13:39:07 2018 +0000 @@ -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 -r 4f1f024353ae -r d4d2c567bb72 mercurial/utils/dateutil.py --- a/mercurial/utils/dateutil.py Fri Oct 12 16:51:11 2018 +0200 +++ b/mercurial/utils/dateutil.py Sat Oct 13 13:39:07 2018 +0000 @@ -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: