# HG changeset patch
# User Augie Fackler <raf@durin42.com>
# Date 2014-03-12 17:19:20
# Node ID 0916f829eb8d0b2bf1d5e8037f55c72b964a9006
# Parent  da6bea33007b0002e8e4a20b259e0964cefbefbb

util: move from dict() construction to {} literals

The latter are both faster and more consistent across Python 2 and 3.

diff --git a/mercurial/util.py b/mercurial/util.py
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -1198,11 +1198,11 @@ def matchdate(date):
     """
 
     def lower(date):
-        d = dict(mb="1", d="1")
+        d = {'mb': "1", 'd': "1"}
         return parsedate(date, extendeddateformats, d)[0]
 
     def upper(date):
-        d = dict(mb="12", HI="23", M="59", S="59")
+        d = {'mb': "12", 'HI': "23", 'M': "59", 'S': "59"}
         for days in ("31", "30", "29"):
             try:
                 d["d"] = days