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

  • Committer: Michael Hudson
  • Date: 2009-11-26 04:01:58 UTC
  • mto: This revision was merged to the branch mainline in revision 4830.
  • Revision ID: michael.hudson@canonical.com-20091126040158-3q6ukjpb38tlmxr9
test and fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
697
697
                for path in path_names:
698
698
                    yield searcher.get_items(path)
699
699
 
700
 
    @needs_read_lock
701
700
    def _get_rules_searcher(self, default_searcher):
702
701
        """Get the RulesSearcher for this tree given the default one."""
703
702
        searcher = default_searcher
954
953
            a PathsNotVersionedError will be thrown.
955
954
        :param want_unversioned: Scan for unversioned paths.
956
955
        """
957
 
        # NB: show_status depends on being able to pass in non-versioned files
958
 
        # and report them as unknown
959
956
        trees = (self.source,)
960
957
        if extra_trees is not None:
961
958
            trees = trees + tuple(extra_trees)