~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Ian Clatworthy
  • Date: 2007-10-25 06:17:57 UTC
  • mto: (2940.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2941.
  • Revision ID: ian.clatworthy@internode.on.net-20071025061757-mak2y7k5u0qgffkj
more review feedback from lifeless and poolie

Show diffs side-by-side

added added

removed removed

Lines of Context:
1972
1972
# post-subtrees to allow ease of testing.
1973
1973
# NOTE: These are experimental in 0.92.
1974
1974
format_registry.register_lazy(
1975
 
    'Bazaar Packs Containing Knits Format (bzr 0.92)\n',
 
1975
    'Bazaar pack repository format 1 (needs bzr 0.92)\n',
1976
1976
    'bzrlib.repofmt.pack_repo',
1977
1977
    'RepositoryFormatKnitPack1',
1978
1978
    )
1979
1979
format_registry.register_lazy(
1980
 
    'Bazaar Packs Containing Knits With Subtrees Format (bzr 0.92)\n',
 
1980
    'Bazaar pack repository format 1 with subtree support (needs bzr 0.92)\n',
1981
1981
    'bzrlib.repofmt.pack_repo',
1982
1982
    'RepositoryFormatKnitPack3',
1983
1983
    )