[PATCH 09 of 18 helps-py3] util: move from dict() construction to {} literals

Augie Fackler raf at durin42.com
Wed Mar 12 12:40:43 CDT 2014


# HG changeset patch
# User Augie Fackler <raf at durin42.com>
# Date 1394644760 14400
#      Wed Mar 12 13:19:20 2014 -0400
# 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 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


More information about the Mercurial-devel mailing list