mercurial/localrepo.py
changeset 6760 4faaa0535ea7
parent 6755 f8299c84b5b6
child 6762 f67d1468ac50
equal deleted inserted replaced
6759:9d2ab50803e9 6760:4faaa0535ea7
   970         else:
   970         else:
   971             for src, fn, st in self.dirstate.walk(match, True, False):
   971             for src, fn, st in self.dirstate.walk(match, True, False):
   972                 yield fn
   972                 yield fn
   973 
   973 
   974     def status(self, node1=None, node2=None, match=None,
   974     def status(self, node1=None, node2=None, match=None,
   975                ignored=False, clean=False, unknown=True):
   975                ignored=False, clean=False, unknown=False):
   976         """return status of files between two nodes or node and working directory
   976         """return status of files between two nodes or node and working directory
   977 
   977 
   978         If node1 is None, use the first dirstate parent instead.
   978         If node1 is None, use the first dirstate parent instead.
   979         If node2 is None, compare node1 with working directory.
   979         If node2 is None, compare node1 with working directory.
   980         """
   980         """