mercurial/dirstate.py
changeset 48121 5fc2dfb073d6
parent 48107 dcd97b082b3b
child 48140 98b3eb6c1479
equal deleted inserted replaced
48120:fe6617715464 48121:5fc2dfb073d6
  1250             warnings,
  1250             warnings,
  1251             bad,
  1251             bad,
  1252             traversed,
  1252             traversed,
  1253             dirty,
  1253             dirty,
  1254         ) = rustmod.status(
  1254         ) = rustmod.status(
  1255             self._map._rustmap,
  1255             self._map._map,
  1256             matcher,
  1256             matcher,
  1257             self._rootdir,
  1257             self._rootdir,
  1258             self._ignorefiles(),
  1258             self._ignorefiles(),
  1259             self._checkexec,
  1259             self._checkexec,
  1260             self._lastnormaltime,
  1260             self._lastnormaltime,
  1450         """
  1450         """
  1451         return files in the dirstate (in whatever state) filtered by match
  1451         return files in the dirstate (in whatever state) filtered by match
  1452         """
  1452         """
  1453         dmap = self._map
  1453         dmap = self._map
  1454         if rustmod is not None:
  1454         if rustmod is not None:
  1455             dmap = self._map._rustmap
  1455             dmap = self._map._map
  1456 
  1456 
  1457         if match.always():
  1457         if match.always():
  1458             return dmap.keys()
  1458             return dmap.keys()
  1459         files = match.files()
  1459         files = match.files()
  1460         if match.isexact():
  1460         if match.isexact():