~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Jelmer Vernooij
  • Date: 2009-05-06 20:46:38 UTC
  • mto: (4398.5.2 bencode_serializer)
  • mto: This revision was merged to the branch mainline in revision 4410.
  • Revision ID: jelmer@samba.org-20090506204638-ffuwisc1d3vc1wwp
Add development7-rich-root format that uses the RIO Serializer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3031
3031
    'RepositoryFormatCHK1',
3032
3032
    )
3033
3033
 
 
3034
format_registry.register_lazy(
 
3035
    'Bazaar development format - chk repository with rio revision '
 
3036
        'serialization (needs bzr.dev from 1.15)\n',
 
3037
    'bzrlib.repofmt.groupcompress_repo',
 
3038
    'RepositoryFormatCHK2',
 
3039
    )
 
3040
 
3034
3041
 
3035
3042
class InterRepository(InterObject):
3036
3043
    """This class represents operations taking place between two repositories.