~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

Merge install-without-compiler fix for 0.91

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
 
79
79
    _file_ids_altered_regex = lazy_regex.lazy_compile(
80
80
        r'file_id="(?P<file_id>[^"]+)"'
81
 
        r'.*revision="(?P<revision_id>[^"]+)"'
 
81
        r'.* revision="(?P<revision_id>[^"]+)"'
82
82
        )
83
83
 
84
84
    def abort_write_group(self):
1645
1645
 
1646
1646
    @classmethod
1647
1647
    def _get_repo_format_to_test(self):
1648
 
        """Repository format for testing with."""
1649
 
        return RepositoryFormat.get_default_format()
 
1648
        """Repository format for testing with.
 
1649
        
 
1650
        InterSameData can pull from subtree to subtree and from non-subtree to
 
1651
        non-subtree, so we test this with the richest repository format.
 
1652
        """
 
1653
        from bzrlib.repofmt import knitrepo
 
1654
        return knitrepo.RepositoryFormatKnit3()
1650
1655
 
1651
1656
    @staticmethod
1652
1657
    def is_compatible(source, target):