~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/versionedfile.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:
558
558
    InterVersionedFile.get(other).method_name(parameters).
559
559
    """
560
560
 
561
 
    _optimisers = set()
 
561
    _optimisers = []
562
562
    """The available optimised InterVersionedFile types."""
563
563
 
564
 
    @staticmethod
565
 
    def is_compatible(source, target):
566
 
        return True
567
 
    
568
564
    def join(self, pb=None, msg=None, version_ids=None, ignore_missing=False):
569
565
        """Integrate versions from self.source into self.target.
570
566