comparison mercurial/dirstate.py @ 3563:26b556c1d01d

improve walk docstrings
author Matt Mackall <mpm@selenic.com>
date Fri, 27 Oct 2006 11:24:10 -0500
parents 09d99b7e4da0
children 549cb7b640fb
comparison
equal deleted inserted replaced
3562:730ca93ed788 3563:26b556c1d01d
363 363
364 results are yielded in a tuple (src, filename, st), where src 364 results are yielded in a tuple (src, filename, st), where src
365 is one of: 365 is one of:
366 'f' the file was found in the directory tree 366 'f' the file was found in the directory tree
367 'm' the file was only in the dirstate and not in the tree 367 'm' the file was only in the dirstate and not in the tree
368 'b' file was not found and matched badmatch
369
368 and st is the stat result if the file was found in the directory. 370 and st is the stat result if the file was found in the directory.
369 ''' 371 '''
370 self.lazyread() 372 self.lazyread()
371 373
372 # walk all files by default 374 # walk all files by default