mercurial/dirstate.py
changeset 32248 d74b0cff94a9
parent 32226 8f1a2b848b52
child 32385 73e67c4386ec
equal deleted inserted replaced
32247:0c73634d0570 32248:d74b0cff94a9
    16 from .node import nullid
    16 from .node import nullid
    17 from . import (
    17 from . import (
    18     encoding,
    18     encoding,
    19     error,
    19     error,
    20     match as matchmod,
    20     match as matchmod,
    21     osutil,
       
    22     parsers,
    21     parsers,
    23     pathutil,
    22     pathutil,
    24     pycompat,
    23     pycompat,
    25     scmutil,
    24     scmutil,
    26     txnutil,
    25     txnutil,
   986 
   985 
   987         matchfn = match.matchfn
   986         matchfn = match.matchfn
   988         matchalways = match.always()
   987         matchalways = match.always()
   989         matchtdir = match.traversedir
   988         matchtdir = match.traversedir
   990         dmap = self._map
   989         dmap = self._map
   991         listdir = osutil.listdir
   990         listdir = util.listdir
   992         lstat = os.lstat
   991         lstat = os.lstat
   993         dirkind = stat.S_IFDIR
   992         dirkind = stat.S_IFDIR
   994         regkind = stat.S_IFREG
   993         regkind = stat.S_IFREG
   995         lnkkind = stat.S_IFLNK
   994         lnkkind = stat.S_IFLNK
   996         join = self._join
   995         join = self._join