/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/workingtree.py

  • Committer: Ian Clatworthy
  • Date: 2008-12-22 08:44:20 UTC
  • mto: (3915.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3916.
  • Revision ID: ian.clatworthy@canonical.com-20081222084420-4arkm0evawpd16x7
DirStateWorkingTree and DirStateWorkingTreeFormat base classes introduced

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
    transform,
73
73
    ui,
74
74
    urlutils,
75
 
    workingtree_5,
76
75
    xml5,
77
76
    xml6,
78
77
    xml7,
80
79
import bzrlib.branch
81
80
from bzrlib.transport import get_transport
82
81
import bzrlib.ui
83
 
from bzrlib.workingtree_4 import WorkingTreeFormat4
 
82
from bzrlib.workingtree_4 import WorkingTreeFormat4, WorkingTreeFormat5
84
83
""")
85
84
 
86
85
from bzrlib import symbol_versioning
2957
2956
 
2958
2957
__default_format = WorkingTreeFormat4()
2959
2958
WorkingTreeFormat.register_format(__default_format)
2960
 
WorkingTreeFormat.register_format(workingtree_5.WorkingTreeFormat5())
 
2959
WorkingTreeFormat.register_format(WorkingTreeFormat5())
2961
2960
WorkingTreeFormat.register_format(WorkingTreeFormat3())
2962
2961
WorkingTreeFormat.set_default_format(__default_format)
2963
2962
# formats which have no format string are not discoverable