~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Aaron Bentley
  • Date: 2006-08-22 16:14:17 UTC
  • mto: (1910.2.43 format-bumps)
  • mto: This revision was merged to the branch mainline in revision 1997.
  • Revision ID: abentley@panoramicfeedback.com-20060822161417-29c1eb4790285db9
Back out inter.get changes, make optimizers an ordered list

Show diffs side-by-side

added added

removed removed

Lines of Context:
375
375
    will pass through to InterTree as appropriate.
376
376
    """
377
377
 
378
 
    _optimisers = set()
 
378
    _optimisers = []
379
379
 
380
380
    @needs_read_lock
381
381
    def compare(self, want_unchanged=False, specific_files=None,
408
408
            return delta.TreeDelta()
409
409
        return delta._compare_trees(self.source, self.target, want_unchanged,
410
410
            specific_file_ids)
411
 
 
412
 
    @staticmethod
413
 
    def is_compatible(source, target):
414
 
        return True