/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/tree.py

s/follow_tree_references/recurse_nested/g

Show diffs side-by-side

added added

removed removed

Lines of Context:
354
354
        raise NotImplementedError(self.iter_child_entries)
355
355
 
356
356
    def list_files(self, include_root=False, from_dir=None, recursive=True,
357
 
                   follow_tree_references=False):
 
357
                   recurse_nested=False):
358
358
        """List all files in this tree.
359
359
 
360
360
        :param include_root: Whether to include the entry for the tree root
361
361
        :param from_dir: Directory under which to list files
362
362
        :param recursive: Whether to list files recursively
363
 
        :param follow_tree_references: enter nested trees
 
363
        :param recurse_nested: enter nested trees
364
364
        :return: iterator over tuples of
365
365
            (path, versioned, kind, inventory entry)
366
366
        """