mercurial/manifest.py
changeset 3893 6b4127c7d52a
parent 3886 abaee83ce0a6
child 4159 a896607d3ec3
equal deleted inserted replaced
3892:2eec996f2fb9 3893:6b4127c7d52a
     4 #
     4 #
     5 # This software may be used and distributed according to the terms
     5 # This software may be used and distributed according to the terms
     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 revlog import *
     8 from revlog import *
     9 from i18n import gettext as _
     9 from i18n import _
    10 import array, bisect, struct, mdiff
    10 import array, bisect, struct, mdiff
    11 
    11 
    12 class manifestdict(dict):
    12 class manifestdict(dict):
    13     def __init__(self, mapping=None, flags=None):
    13     def __init__(self, mapping=None, flags=None):
    14         if mapping is None: mapping = {}
    14         if mapping is None: mapping = {}