mercurial/dirstate.py
changeset 32372 df448de7cf3b
parent 32352 b2de7fced2fa
child 32550 b98199a5c3e1
equal deleted inserted replaced
32371:151cc3b3d799 32372:df448de7cf3b
    17 from .node import nullid
    17 from .node import nullid
    18 from . import (
    18 from . import (
    19     encoding,
    19     encoding,
    20     error,
    20     error,
    21     match as matchmod,
    21     match as matchmod,
    22     parsers,
       
    23     pathutil,
    22     pathutil,
       
    23     policy,
    24     pycompat,
    24     pycompat,
    25     scmutil,
    25     scmutil,
    26     txnutil,
    26     txnutil,
    27     util,
    27     util,
    28 )
    28 )
       
    29 
       
    30 parsers = policy.importmod(r'parsers')
    29 
    31 
    30 propertycache = util.propertycache
    32 propertycache = util.propertycache
    31 filecache = scmutil.filecache
    33 filecache = scmutil.filecache
    32 _rangemask = 0x7fffffff
    34 _rangemask = 0x7fffffff
    33 
    35