/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/repofmt/weaverepo.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-03 12:50:21 UTC
  • mfrom: (5697 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5703.
  • Revision ID: jelmer@samba.org-20110303125021-ziry6a0qsr9l72x5
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
329
329
        result.chk_bytes = None
330
330
        return result
331
331
 
 
332
    def is_deprecated(self):
 
333
        return True
 
334
 
332
335
 
333
336
class RepositoryFormat4(PreSplitOutRepositoryFormat):
334
337
    """Bzr repository format 4.
573
576
        result._transport = repo_transport
574
577
        return result
575
578
 
 
579
    def is_deprecated(self):
 
580
        return True
 
581
 
576
582
 
577
583
class TextVersionedFiles(VersionedFiles):
578
584
    """Just-a-bunch-of-files based VersionedFile stores."""
861
867
 
862
868
 
863
869
InterRepository.register_optimiser(InterWeaveRepo)
 
870
 
 
871
 
 
872
def get_extra_interrepo_test_combinations():
 
873
    from bzrlib.repofmt import knitrepo
 
874
    return [(InterRepository, RepositoryFormat5(),
 
875
        knitrepo.RepositoryFormatKnit3())]