changeset 43781 | b65bd4b61d78 |
parent 43506 | 9f70512ae2cf |
child 45942 | 89a2afe31e82 |
--- a/mercurial/utils/dateutil.py Mon Nov 25 12:33:06 2019 -0800 +++ b/mercurial/utils/dateutil.py Mon Nov 25 12:44:04 2019 -0800 @@ -209,6 +209,8 @@ True >>> tz == strtz True + >>> parsedate(b'2000 UTC', formats=extendeddateformats) + (946684800, 0) """ if bias is None: bias = {} @@ -244,7 +246,8 @@ if part[0:1] in b"HMS": b = b"00" else: - b = b"0" + # year, month, and day start from 1 + b = b"1" # this piece is for matching the generic end to today's date n = datestr(now, b"%" + part[0:1])