mercurial/manifest.py
changeset 6212 e75aab656f46
parent 6211 f89fd07fc51d
child 6389 0231f763ebc8
equal deleted inserted replaced
6211:f89fd07fc51d 6212:e75aab656f46
     6 # of the GNU General Public License, incorporated herein by reference.
     6 # of the GNU General Public License, incorporated herein by reference.
     7 
     7 
     8 from node import bin, hex, nullid
     8 from node import bin, hex, nullid
     9 from revlog import revlog, RevlogError
     9 from revlog import revlog, RevlogError
    10 from i18n import _
    10 from i18n import _
    11 import array, bisect, struct, mdiff
    11 import array, struct, mdiff
    12 
    12 
    13 class manifestdict(dict):
    13 class manifestdict(dict):
    14     def __init__(self, mapping=None, flags=None):
    14     def __init__(self, mapping=None, flags=None):
    15         if mapping is None: mapping = {}
    15         if mapping is None: mapping = {}
    16         if flags is None: flags = {}
    16         if flags is None: flags = {}