~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/bzr.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-09-01 20:32:35 UTC
  • mfrom: (13261.7.23 bzr-2.4b4)
  • Revision ID: launchpad@pqm.canonical.com-20110901203235-gjkcaa4llvi4q856
[r=gmb][bug=301472] Update bzr to version 2.4.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
from bzrlib.branch import (
22
22
    BranchReferenceFormat,
23
 
    BzrBranchFormat4,
24
23
    BzrBranchFormat5,
25
24
    BzrBranchFormat6,
26
25
    BzrBranchFormat7,
27
26
    )
28
 
from bzrlib.bzrdir import (
 
27
from bzrlib.bzrdir import BzrDirMetaFormat1
 
28
from bzrlib.plugins.loom.branch import (
 
29
    BzrBranchLoomFormat1,
 
30
    BzrBranchLoomFormat6,
 
31
    )
 
32
from bzrlib.plugins.weave_fmt.branch import BzrBranchFormat4
 
33
from bzrlib.plugins.weave_fmt.bzrdir import (
29
34
    BzrDirFormat4,
30
35
    BzrDirFormat5,
31
36
    BzrDirFormat6,
32
 
    BzrDirMetaFormat1,
33
37
    )
34
 
from bzrlib.plugins.loom.branch import (
35
 
    BzrBranchLoomFormat1,
36
 
    BzrBranchLoomFormat6,
 
38
from bzrlib.plugins.weave_fmt.repository import (
 
39
    RepositoryFormat4,
 
40
    RepositoryFormat5,
 
41
    RepositoryFormat6,
 
42
    RepositoryFormat7,
37
43
    )
38
44
from bzrlib.repofmt.groupcompress_repo import RepositoryFormat2a
 
45
from bzrlib.repofmt.knitpack_repo import (
 
46
    RepositoryFormatKnitPack1,
 
47
    RepositoryFormatKnitPack3,
 
48
    RepositoryFormatKnitPack4,
 
49
    RepositoryFormatKnitPack5,
 
50
    )
39
51
from bzrlib.repofmt.knitrepo import (
40
52
    RepositoryFormatKnit1,
41
53
    RepositoryFormatKnit3,
42
54
    RepositoryFormatKnit4,
43
55
    )
44
 
from bzrlib.repofmt.pack_repo import (
45
 
    RepositoryFormatKnitPack1,
46
 
    RepositoryFormatKnitPack3,
47
 
    RepositoryFormatKnitPack4,
48
 
    RepositoryFormatKnitPack5,
49
 
    )
50
 
from bzrlib.repofmt.weaverepo import (
51
 
    RepositoryFormat4,
52
 
    RepositoryFormat5,
53
 
    RepositoryFormat6,
54
 
    RepositoryFormat7,
55
 
    )
56
56
from lazr.enum import (
57
57
    DBEnumeratedType,
58
58
    DBItem,