/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/workingtree.py

Add a recurse_nested argument to Tree.list_files.

Merged from https://code.launchpad.net/~jelmer/brz/follow-tree-references-list-files/+merge/374066

Show diffs side-by-side

added added

removed removed

Lines of Context:
728
728
    def kind(self, relpath):
729
729
        return osutils.file_kind(self.abspath(relpath))
730
730
 
731
 
    def list_files(self, include_root=False, from_dir=None, recursive=True):
 
731
    def list_files(self, include_root=False, from_dir=None, recursive=True,
 
732
                   recurse_nested=False):
732
733
        """List all files as (path, class, kind, id, entry).
733
734
 
734
735
        Lists, but does not descend into unversioned directories.